Miroir du site de l'AE UTBM https://ae.utbm.fr
Go to file
Skia 7f4955d15c Update diagramm 2016-01-29 09:45:59 +01:00
accounting Add first accounting implementation 2016-01-28 16:53:37 +01:00
core Improve subscription and add it to admin app 2016-01-28 17:42:22 +01:00
doc Update diagramm 2016-01-29 09:45:59 +01:00
sith Improve subscription and add it to admin app 2016-01-28 17:42:22 +01:00
subscription Improve subscription and add it to admin app 2016-01-28 17:42:22 +01:00
.gitignore Edited gitignore and README to make everything work proprely with virtualenv 2015-12-03 20:29:07 +01:00
README.md Improve setup script 2015-12-04 16:14:05 +01:00
manage.py First commit: basic users 2015-11-18 09:44:06 +01:00
requirements.txt Repair all tests and update requirements.txt 2015-12-07 16:08:24 +01:00

README.md

Sith AE

To start working on the project, just run the following commands:

git clone https://ae-dev.utbm.fr/ae/Sith.git
cd Sith
virtualenv --clear --python=python3 env_sith
source env_sith/bin/activate
pip install -r requirements.txt
./manage.py setup

To load some initial data in the core:

python3 manage.py loaddata users groups pages

You will be prompted for your Gitlab account, so you need some.

To start the debug server, just run python3 manage.py runserver

Dependencies:

  • Django 1.8

The development is done with sqlite, but it is advised to set a more robust DBMS for production (Postgresql for example)