Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
C
cp_video_dokku
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexandr Dzehil
cp_video_dokku
Commits
d3c48f99
Commit
d3c48f99
authored
Mar 13, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix settings for local start
parent
e26ab0a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
18 deletions
+26
-18
settings.py
cp_video/settings.py
+26
-18
No files found.
cp_video/settings.py
View file @
d3c48f99
...
...
@@ -12,8 +12,10 @@ https://docs.djangoproject.com/en/3.0/ref/settings/
import
os
import
environ
import
sys
from
pathlib
import
Path
from
django.core.management.utils
import
get_random_secret_key
env
=
environ
.
Env
(
DEBUG
=
(
bool
,
False
))
...
...
@@ -21,18 +23,16 @@ env = environ.Env(DEBUG=(bool, False))
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR
=
Path
(
__file__
)
.
resolve
()
.
parent
.
parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY
=
env
(
'SECRET_KEY'
)
SECRET_KEY
=
env
(
'SECRET_KEY'
,
default
=
get_random_secret_key
()
)
# Take environment variables from .env file
environ
.
Env
.
read_env
(
os
.
path
.
join
(
BASE_DIR
,
'.env'
))
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG
=
env
(
'DEBUG'
)
DEBUG
=
env
(
'DEBUG'
,
default
=
True
)
DEVELOPMENT_MODE
=
env
(
'DEVELOPMENT_MODE'
,
default
=
True
)
ALLOWED_HOSTS
=
env
(
'ALLOWED_HOSTS'
,
default
=
[])
...
...
@@ -86,18 +86,26 @@ WSGI_APPLICATION = 'cp_video.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
# DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.sqlite3',
# 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
# }
# }
DATABASES
=
{
'default'
:
env
.
db
(
'DATABASE_URL'
,
default
=
'postgres://user:pass@postgreshost:5432/dbname'
),
}
if
DEVELOPMENT_MODE
is
True
:
DATABASES
=
{
'default'
:
{
'ENGINE'
:
'django.db.backends.postgresql_psycopg2'
,
'NAME'
:
'cp_video'
,
'USER'
:
'django'
,
'PASSWORD'
:
'django'
,
'HOST'
:
'127.0.0.1'
,
}
}
elif
len
(
sys
.
argv
)
>
0
and
sys
.
argv
[
1
]
!=
'collectstatic'
:
if
env
(
'DATABASE_URL'
,
default
=
None
)
is
None
:
raise
Exception
(
'DATABASE_URL environment variable not defined'
)
DATABASES
=
{
'default'
:
env
.
db
(
'DATABASE_URL'
,
default
=
'postgres://user:pass@postgreshost:5432/dbname'
),
}
# Password validation
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment