Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AE UTBM
Sith
Commits
2c4bac7c
Commit
2c4bac7c
authored
Dec 03, 2015
by
Skia
Browse files
Add setup custom command to manage.py
parent
5f07237d
Changes
3
Hide whitespace changes
Inline
Side-by-side
core/management/__init__.py
0 → 100644
View file @
2c4bac7c
core/management/commands/__init__.py
0 → 100644
View file @
2c4bac7c
core/management/commands/setup.py
0 → 100755
View file @
2c4bac7c
from
django.core.management.base
import
BaseCommand
,
CommandError
from
django.core.management
import
call_command
from
core.models
import
Group
,
User
class
Command
(
BaseCommand
):
help
=
"Set up a new instance of the Sith AE"
def
handle
(
self
,
*
args
,
**
options
):
try
:
# TODO: really remove the DB, to make sure all the tables and indexes are dropped
call_command
(
'flush'
,
'--noinput'
,
'--no-initial-data'
)
except
:
pass
call_command
(
'migrate'
)
u
=
User
(
username
=
'root'
,
last_name
=
""
,
first_name
=
"Bibou"
,
email
=
"ae.info@utbm.fr"
,
date_of_birth
=
"1942-06-12T00:00:00+01:00"
,
is_superuser
=
True
,
is_staff
=
True
)
u
.
set_password
(
"plop"
)
u
.
save
()
Group
(
name
=
"root"
).
save
()
# Just some example groups, only root is truly mandatory
Group
(
name
=
"bureau_restreint_ae"
).
save
()
Group
(
name
=
"bureau_ae"
).
save
()
Group
(
name
=
"membre_ae"
).
save
()
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