Skip to content

Commit

Permalink
#5 fix .env
Browse files Browse the repository at this point in the history
Signed-off-by: Davide Pollicino <davidepollicino2015@gmail.com>
  • Loading branch information
omonimus1 committed Mar 2, 2022
1 parent 989b599 commit d850a28
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion webAppClassifier/classifier/.env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SECRET_KEY=django-insecure-_l=2_dy=i8!%o$-)3!^29-t=c6c^n-k61_mjqfxp7w3qz4ec!3
DEBUG=False
HOST=['127.0.0.1','35.178.79.34']
ALLOWED_HOSTS=['127.0.0.1','35.178.79.34']
DATABASE_NAME=
DATABASE_USER=
DATABASE_PASSWORD=
Expand Down
8 changes: 0 additions & 8 deletions webAppClassifier/webAppClassifier/.env

This file was deleted.

2 changes: 1 addition & 1 deletion webAppClassifier/webAppClassifier/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
SECRET_KEY = env("SECRET_KEY")
DEBUG = env("DEBUG")

ALLOWED_HOSTS = []
ALLOWED_HOSTS = env("ALLOWED_HOSTS")


# Application definition
Expand Down

0 comments on commit d850a28

Please sign in to comment.