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.
 
 
 
 
Christophe SCAYA 819a00d738 Création du fichier Readme 4 years ago
eduapps_project Premier commit 4 years ago
homeapp Premier commit 4 years ago
quiz Premier commit 4 years ago
.gitignore Premier commit 4 years ago
Readme.md Création du fichier Readme 4 years ago
manage.py Premier commit 4 years ago
requirements.txt Modifs 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