Django project for web experiences
Jérôme BUISINE bcfff4c2d8 Fix use of expe_data | преди 5 години | |
---|---|---|
ThesisWebExpeDjango | преди 5 години | |
expe | преди 5 години | |
static | преди 5 години | |
.dockerignore | преди 5 години | |
.gitignore | преди 5 години | |
DOCUMENTATION.md | преди 5 години | |
Dockerfile | преди 5 години | |
Makefile | преди 5 години | |
README.md | преди 5 години | |
__init__.py | преди 5 години | |
docker-compose.yml | преди 5 години | |
manage.py | преди 5 години | |
requirements.txt | преди 5 години |
Web site which contains experimentss on synthesis images (perception of noise).
You need to have python, pip
pip install -r requirements.txt
Initialize the database with the following command :
python manage.py migrate
Run the server :
python manage.py runserver
or if you want to make it listen on a specific port number :
python 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 experiments results.
Configure your own URL prefix using WEBEXPE_PREFIX_URL
:
WEBEXPE_PREFIX_URL=experiments python manage.py runserver
or using docker:
WEBEXPE_PREFIX_URL=experiments make deploy
Using custom API base URL using WEB_API_PREFIX_URL
:
WEBEXPE_PREFIX_URL=experiments/ WEB_API_PREFIX_URL=expe/api python manage.py runserver
or using docker:
WEBEXPE_PREFIX_URL=experiments/ WEB_API_PREFIX_URL=expe/api make deploy
See DOCUMENTATION.md. This documentation explains how to create your own experiments.
This project uses git-flow to improve cooperation during the development.
For each feature, you have to create a new git flow feature branch.