You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
4 years ago | |
|---|---|---|
| eduapps_project | 4 years ago | |
| homeapp | 4 years ago | |
| quiz | 4 years ago | |
| .gitignore | 4 years ago | |
| Readme.md | 4 years ago | |
| manage.py | 4 years ago | |
| requirements.txt | 4 years ago | |
Readme.md
Eduapps
Installation :
Clonage du dépôt (avec ssh) :
git clone ssh://git@gitea.christophe-scaya.fr:222/scayac/Eduapps.git
Création de l'environnement de développement python (nommé djanjo-venv ci-après) :
python3 -m venv django-venv
Se mettre dans l'environnement de développement puis installer les dépendances :
source django-venv/bin/activate
pip install -r requirements.txt
Initialiser la base de données et créer un compte admin pour l'interface de gestion :
python manage.py migrate
python manage.py createsuperuser
Lancer le serveur de test :
python manage.py runserver