removed pycache from git + updated config for prod

master
Laurent Morvillier 6 years ago
parent 4534a50bd6
commit 2895a94ae7
  1. 5
      .gitignore
  2. BIN
      news/migrations/__pycache__/0001_initial.cpython-37.pyc
  3. BIN
      news/migrations/__pycache__/0002_auto_20190917_1255.cpython-37.pyc
  4. BIN
      news/migrations/__pycache__/0003_auto_20190917_1258.cpython-37.pyc
  5. BIN
      news/migrations/__pycache__/0004_auto_20190917_1301.cpython-37.pyc
  6. BIN
      news/migrations/__pycache__/0005_auto_20190918_0918.cpython-37.pyc
  7. BIN
      news/migrations/__pycache__/__init__.cpython-37.pyc
  8. BIN
      pokercc/._settings.py
  9. 4
      pokercc/settings.py
  10. 2
      pokercc/urls.py

5
.gitignore vendored

@ -2,6 +2,7 @@
db.sqlite3
news/__pycache__
pokercc/__pycache__
news/migrations/__pycache__/
**/.DS_Store
rumble/

Binary file not shown.

@ -27,7 +27,7 @@ SECRET_KEY = 'erk4wh93pi(m(odwg74lsy60tb$rz4=ndyiv3#2lcx^!$^kq@4'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
ALLOWED_HOSTS = ['ssh-stax.alwaysdata.net', 'www.pokerrumble.net']
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
@ -83,7 +83,7 @@ DATABASES = {
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'stax_rumble',
'NAME': 'stax_rumble_dev',
'USER': 'stax',
'PASSWORD': 'staxkikoo',
'HOST': 'postgresql-stax.alwaysdata.net',

@ -17,6 +17,6 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('news/', include('news.urls')),
path('', include('news.urls')),
path('admin/', admin.site.urls),
]

Loading…
Cancel
Save