# Conflicts: # apps/main/models.py # apps/news/admin.py # apps/news/models.py # apps/news/serializers.py # apps/news/views.py # project/settings/base.py # project/settings/production.py # requirements/base.txt
10 lines
237 B
Python
10 lines
237 B
Python
"""Production settings."""
|
|
from .base import *
|
|
from .amazon_s3 import *
|
|
|
|
# Booking API configuration
|
|
GUESTONLINE_SERVICE = 'https://api.guestonline.fr/'
|
|
GUESTONLINE_TOKEN = ''
|
|
LASTABLE_SERVICE = ''
|
|
LASTABLE_TOKEN = ''
|
|
LASTABLE_PROXY = '' |