· 6 years ago · Oct 13, 2019, 04:48 AM
1SECRET_KEY = '^--t7aiu^b)aq)i_lg-$-!-^0ingout!h_local_default_-v8uj_tq^u+5!b+^'
2ALLOWED_HOSTS = ['*']
3DEBUG = True
4MOCK_RESPONSE = True
5
6ENGINE = 'django.db.backends.postgresql_psycopg2'
7NAME = 'pekhom'
8USER = 'circle'
9PASSWORD = 'circle123456789'
10HOST = 'localhost'
11PORT = ''
12
13# backend credentials
14BACKEND_AUTH_URL = 'http://192.168.1.162:5000/api-service-auth/'
15BACKEND_AUTH_USERNAME = 'pekhom_service'
16BACKEND_AUTH_PASSWORD = 'pekhom_service123456789'
17BACKEND_ACCOUNT_URL = 'http://192.168.1.162:5000/api/v1/system-services/user-info/'
18BACKEND_USER_VALID_URL = 'http://192.168.1.162:5000/api/v1/system-services/user-pin-validation/'
19BACKEND_SERVICE_NAME = 'PEKHOM Service'
20BACKEND_SERVICE_KEY = 'fc273119720d507b9e65fb94f8d811d5fa563275ee05457db47ff7de3eb818f4.c903009324d8d568bacf33509c8438c80f524d1e711c8e2361af6a17977fbec4.1389730f4a64418bb7ddbf9e4b3609ea'
21
22BACKEND_PUSH_NOTIFICATION_URL='http://192.168.101.19/api/v2/send/push/'
23BACKEND_CURRENT_BALANCE_URL='http://192.168.1.162:5000/api/v2/account/account-balance/'
24
25
26# pekhom movie urls
27PEKHOM_ALL_MOVIE_LIST_URL = 'http://127.0.0.1:7000/pekhom/v1/movie/list/'
28PEKHOM_RUNNING_MOVIE_LIST_URL = 'http://127.0.0.1:7000/pekhom/v1/running/movie/'
29PEKHOM_MOVIE_SCHEDULE_LIST_URL = 'http://127.0.0.1:7000/pekhom/v1/movie/schedule/'
30PEKHOM_SEAT_STATUS_URL = 'http://127.0.0.1:7000/pekhom/v1/seat/status/'
31PEKHOM_HOLD_SEAT_URL = 'http://127.0.0.1:7000/pekhom/v1/hold/seat/'
32PEKHOM_CONFIRM_TICKET_URL = 'http://127.0.0.1:7000/pekhom/v1/confirm/ticket/'
33PEKHOM_CANCEL_TICKET_URL = 'http://127.0.0.1:7000/pekhom/v1/cancel/ticket/'
34
35# pekhom hotel urls
36ALL_HOTEL_URL = 'http://127.0.0.1:7000/pekhom/v1/hotel/all/'
37HOTEL_SEARCH_URL = 'http://127.0.0.1:7000/pekhom/v1/hotel/search/'
38HOTEL_PROFILE_URL = 'http://127.0.0.1:7000/pekhom/v1/hotel/profile/'
39HOTEL_ROOM_AVAILABILITY_URL = 'http://127.0.0.1:7000/pekhom/v1/hotel/room/availability/'
40CREATE_RESERVATION_URL = 'http://127.0.0.1:7000/pekhom/v1/create/reservation/'
41ADD_ROOM_URL = 'http://127.0.01:7000/pekhom/v1/add/room/'
42REMOVE_ROOM_URL = 'http://127.0.01:7000/pekhom/v1/remove/room/'
43UPDATE_PROFILE_URL = 'http://127.0.01:7000/pekhom/v1/update/profile/'
44CONFIRM_RESERAVATION_URL = 'http://127.0.01:7000/pekhom/v1/confirm/'
45CANCEL_RESERAVATION_URL = 'http://127.0.01:7000/pekhom/v1/cancel/'
46RESERAVATION_DETAILS_URL = 'http://127.0.01:7000/pekhom/v1/details/'