Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
site-kwei
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aeltheos
site-kwei
Commits
fa13b3a0
Commit
fa13b3a0
authored
4 years ago
by
Dorian Lesbre
Browse files
Options
Downloads
Patches
Plain Diff
Secret settings + Fix #3
parent
45748dd9
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
Makefile
+5
-1
5 additions, 1 deletion
Makefile
README.md
+5
-1
5 additions, 1 deletion
README.md
interludes/secret_example.py
+14
-0
14 additions, 0 deletions
interludes/secret_example.py
interludes/settings.py
+45
-23
45 additions, 23 deletions
interludes/settings.py
with
72 additions
and
25 deletions
.gitignore
+
3
−
0
View file @
fa13b3a0
# secret file
interludes/secret.py
myvenv
myvenv
/static
/static
.DS_Store
.DS_Store
...
...
This diff is collapsed.
Click to expand it.
Makefile
+
5
−
1
View file @
fa13b3a0
...
@@ -12,6 +12,10 @@ install: ## Install requirements
...
@@ -12,6 +12,10 @@ install: ## Install requirements
$(
PYTHON
)
-m
pip
install
--upgrade
pip
$(
PYTHON
)
-m
pip
install
--upgrade
pip
pip
install
-r
requirements.txt
pip
install
-r
requirements.txt
.PHONY
:
secret
secret
:
##
Link the secret_example.py to secret.py (only in dev mode)
ln
-s
interludes/secret_example.py interludes/secret.py
.PHONY
:
migrate
.PHONY
:
migrate
migrate
:
##
Make and run migrations
migrate
:
##
Make and run migrations
$(
PYTHON
)
$(
MANAGER
)
makemigrations
$(
PYTHON
)
$(
MANAGER
)
makemigrations
...
@@ -26,7 +30,7 @@ host: ## Host localy to access from same netword (make sure to add IP to ALLOWED
...
@@ -26,7 +30,7 @@ host: ## Host localy to access from same netword (make sure to add IP to ALLOWED
$(
PYTHON
)
$(
MANAGER
)
runserver 0.0.0.0:8000
$(
PYTHON
)
$(
MANAGER
)
runserver 0.0.0.0:8000
.PHONY
:
start
.PHONY
:
start
start
:
install migrate serve
##
Install requirements
,
apply migrations
,
then start development server
start
:
install
secret
migrate serve
##
Install requirements
,
apply migrations
,
then start development server
.PHONY
:
clean
.PHONY
:
clean
clean
:
##
Remove migrations and delete database
clean
:
##
Remove migrations and delete database
...
...
This diff is collapsed.
Click to expand it.
README.md
+
5
−
1
View file @
fa13b3a0
...
@@ -34,7 +34,11 @@ Pour tester modifier le repo, après l'avoir cloné :
...
@@ -34,7 +34,11 @@ Pour tester modifier le repo, après l'avoir cloné :
pip3 install -r requirements.txt
pip3 install -r requirements.txt
5.
Faire les les migrations
5.
Copier/linker le fichier
`interludes/secret_example.py`
dans
`interludes/secret.py`
ln -s interludes/secret_example.py interludes/secret.py
6.
Faire les les migrations
make migrate
make migrate
...
...
This diff is collapsed.
Click to expand it.
interludes/secret_example.py
0 → 100644
+
14
−
0
View file @
fa13b3a0
# Secrets that must be changed in production
SECRET_KEY
=
"
i*4$=*fa(644(*!9m2)0-*&sows2uz$b^brb(=)elfn3+y6#1n
"
ADMINS
=
[(
"
superuser
"
,
"
superuser@admin.fr
"
),]
DB_NAME
=
"
db.sqlite3
"
SERVER_EMAIL
=
"
root@localhost
"
DEFAULT_FROM_EMAIL
=
"
webmaster@localhost
"
EMAIL_HOST
=
"
localhost
"
EMAIL_PORT
=
587
EMAIL_HOST_USER
=
None
EMAIL_HOST_PASSWORD
=
None
This diff is collapsed.
Click to expand it.
interludes/settings.py
+
45
−
23
View file @
fa13b3a0
...
@@ -19,16 +19,50 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
...
@@ -19,16 +19,50 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
try
:
SECRET_KEY
=
'
tx$xi%n!8cghirp377zb)gd24g#=&w*ik(bx2h(i8ji0_&9_5l
'
from
.
import
secret
except
ImportError
:
# SECURITY WARNING: don't run with debug turned on in production!
raise
ImportError
(
"
The interludes/secret.py file is missing.
\n
"
"
Run
'
make secret
'
to generate a secret.
"
)
def
import_secret
(
name
):
"""
Shorthand for importing a value from the secret module and raising an
informative exception if a secret is missing.
"""
try
:
return
getattr
(
secret
,
name
)
except
AttributeError
:
raise
RuntimeError
(
"
Secret missing: {}
"
.
format
(
name
))
SECRET_KEY
=
import_secret
(
"
SECRET_KEY
"
)
DB_NAME
=
import_secret
(
"
DB_NAME
"
)
ADMINS
=
import_secret
(
"
ADMINS
"
)
SERVER_EMAIL
=
import_secret
(
"
SERVER_EMAIL
"
)
DEFAULT_FROM_EMAIL
=
import_secret
(
"
DEFAULT_FROM_EMAIL
"
)
EMAIL_HOST
=
import_secret
(
"
EMAIL_HOST
"
)
EMAIL_PORT
=
import_secret
(
"
EMAIL_PORT
"
)
EMAIL_HOST_USER
=
import_secret
(
"
EMAIL_HOST_USER
"
)
EMAIL_HOST_PASSWORD
=
import_secret
(
"
EMAIL_HOST_PASSWORD
"
)
EMAIL_USE_SSL
=
True
# FIXME - set to False in production
DEBUG
=
True
DEBUG
=
True
ADMINS
=
[(
"
respos
"
,
"
respointerludes21@ens.psl.eu
"
),]
# FIXME - set hosts in production
ALLOWED_HOSTS
=
[]
ALLOWED_HOSTS
=
[]
if
DEBUG
:
# This will display emails in Console.
EMAIL_BACKEND
=
'
django.core.mail.backends.console.EmailBackend
'
else
:
EMAIL_BACKEND
=
'
django.core.mail.backends.smtp.EmailBackend
'
# Application definition
# Application definition
...
@@ -85,7 +119,7 @@ WSGI_APPLICATION = 'interludes.wsgi.application'
...
@@ -85,7 +119,7 @@ WSGI_APPLICATION = 'interludes.wsgi.application'
DATABASES
=
{
DATABASES
=
{
'
default
'
:
{
'
default
'
:
{
'
ENGINE
'
:
'
django.db.backends.sqlite3
'
,
'
ENGINE
'
:
'
django.db.backends.sqlite3
'
,
'
NAME
'
:
os
.
path
.
join
(
BASE_DIR
,
'
db.sqlite3
'
),
'
NAME
'
:
os
.
path
.
join
(
BASE_DIR
,
DB_NAME
),
}
}
}
}
...
@@ -100,18 +134,10 @@ AUTH_USER_MODEL = 'accounts.EmailUser'
...
@@ -100,18 +134,10 @@ AUTH_USER_MODEL = 'accounts.EmailUser'
AUTH_PROFILE_MODULE
=
'
home.InterludesParticipant
'
AUTH_PROFILE_MODULE
=
'
home.InterludesParticipant
'
AUTH_PASSWORD_VALIDATORS
=
[
AUTH_PASSWORD_VALIDATORS
=
[
{
{
'
NAME
'
:
'
django.contrib.auth.password_validation.UserAttributeSimilarityValidator
'
,
},
'
NAME
'
:
'
django.contrib.auth.password_validation.UserAttributeSimilarityValidator
'
,
{
'
NAME
'
:
'
django.contrib.auth.password_validation.MinimumLengthValidator
'
,
},
},
{
'
NAME
'
:
'
django.contrib.auth.password_validation.CommonPasswordValidator
'
,
},
{
{
'
NAME
'
:
'
django.contrib.auth.password_validation.NumericPasswordValidator
'
,
},
'
NAME
'
:
'
django.contrib.auth.password_validation.MinimumLengthValidator
'
,
},
{
'
NAME
'
:
'
django.contrib.auth.password_validation.CommonPasswordValidator
'
,
},
{
'
NAME
'
:
'
django.contrib.auth.password_validation.NumericPasswordValidator
'
,
},
]
]
# Session time in seconds
# Session time in seconds
...
@@ -140,9 +166,5 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static')
...
@@ -140,9 +166,5 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static')
LOGIN_URL
=
"
accounts:login
"
LOGIN_URL
=
"
accounts:login
"
LOGIN_REDIRECT_URL
=
"
accounts:profile
"
LOGIN_REDIRECT_URL
=
"
accounts:profile
"
# This will display emails in Console.
# FIXME: remove in production
EMAIL_BACKEND
=
'
django.core.mail.backends.console.EmailBackend
'
# Prefix to mails to admins
# Prefix to mails to admins
EMAIL_SUBJECT_PREFIX
=
'
[DJANGO WEBLUDES]
'
EMAIL_SUBJECT_PREFIX
=
'
[DJANGO WEBLUDES]
'
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment