Django project for web experiences

rigwild aa7b785488 Update `results.js` 4 years ago
ThesisWebExpeDjango b89e88675f Update of django app base url use 4 years ago
expe 98f863a4fb Refactor end of expe redirection 4 years ago
static aa7b785488 Update `results.js` 4 years ago
.dockerignore 8f18f9fa38 Add of dockerignore file 4 years ago
.gitignore 6a0a019eb3 Update of quest expe with load screen 4 years ago
DOCUMENTATION.md 67ff26454f Update of front content 4 years ago
Dockerfile 049bb6b9cb Fix dockerfile FROM 4 years ago
Makefile af1948331d Update clean make commands 4 years ago
README.md 3f2feced3d Update readme + fix typos 4 years ago
__init__.py 1ffcef1620 Update whole application 4 years ago
docker-compose.yml 1ffcef1620 Update whole application 4 years ago
manage.py 58e57f85d6 First project version 4 years ago
requirements.txt 3e21dcc55e Use of docker compose file 4 years ago

README.md

Django Web expe

Description

Web site which contains experiences on synthesis images (perception of noise).

Installation

1. Manually

Requirements

You need to have python, pip

pip install -r requirements.txt

Initialize the database with the following command :

python manage.py migrate

Run server

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

2. Using docker (recommended)

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 exists
  • remove: stop and remove container instance if exists
  • clean: remove docker image if exists

Configuration

Create 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

Create your experiences

See DOCUMENTATION.md. This documentation explains how to create your own experience.

How to contribute ?

This project uses git-flow to improve cooperation during the development.

For each feature, you have to create a new git flow feature branch.

Licence

MIT