13 lines
262 B
Bash
13 lines
262 B
Bash
|
#!/bin/bash
|
||
|
# Copyright (C) 2020 by BDE ENS Paris-Saclay
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
python manage.py compilemessages
|
||
|
python manage.py makemigrations
|
||
|
|
||
|
# Wait for database
|
||
|
sleep 2
|
||
|
python manage.py migrate
|
||
|
|
||
|
python manage.py runserver 0.0.0.0:8000
|