Django project for web experiences
Jérôme BUISINE dcdcad6cf2 Merge branch 'release/v0.1.3' | 5 anos atrás | |
---|---|---|
ThesisWebExpeDjango | 5 anos atrás | |
expe | 5 anos atrás | |
static | 5 anos atrás | |
.dockerignore | 5 anos atrás | |
.gitignore | 5 anos atrás | |
Dockerfile | 5 anos atrás | |
Makefile | 5 anos atrás | |
README.md | 5 anos atrás | |
__init__.py | 5 anos atrás | |
docker-compose.yml | 5 anos atrás | |
manage.py | 5 anos atrás | |
requirements.txt | 5 anos atrás |
Web site which contains experiences on synthesis images (perception of noise).
You need to have python, pip
pip install -r requirementst.txt
And then, run the server :
python project/manage.py runserver
or if you want to precise a specific port number :
python project/manage.py runserver 8080
You can use make commands:
make build
make run
Or simply:
make deploy
Will run build
and run
commands at once.
You also have stop
, remove
, clean
commands:
stop
: stop current container instance if existsremove
: stop and remove container instance if existsclean
: remove docker image if existsCreate your own admin user:
python manage.py createsuperuser
You can now access /admin/results
route with your credentials in order to download experience results.
Configure your own URL prefix using WEBEXPE_PREFIX_URL
:
WEBEXPE_PREFIX_URL=experience python manage.py runserver
or using docker:
WEBEXPE_PREFIX_URL=experience make deploy
Using custom API base URL using WEB_API_PREFIX_URL
:
WEBEXPE_PREFIX_URL=experience/ WEB_API_PREFIX_URL=expe/api python manage.py runserver
or using docker:
WEBEXPE_PREFIX_URL=experience/ WEB_API_PREFIX_URL=expe/api make deploy
This project uses git-flow to improve cooperation during the development.
For each feature, you have to create a new git flow feature branch.