/Full-Room

A CSP (Constraint satisfaction problem) simulation on web app

Primary LanguageJavaScript

Full-Room

Developed by Gold's Gym Team:

  • Adrian Wijaya (1806205363)
  • Ari Angga Nugraha (1806205086)
  • Christopher Samuel (180614115)
  • Iqrar Agalosi Nureyza (1806204902)

Installation Guide

  1. Clone this repo.
git clone https://gitlab.com/iqrar99/full-room.git
  1. Create virtual environment by using venv inside the repository.

On MacOs and Linux:

python3 -m venv env

On Windows:

python -m venv env
  1. Activate the environment.

On MacOS and Linux:

source env/bin/activate

On Windows:

.\env\Scripts\activate
  1. Install all the packages.
pip install -r requirements.txt
  1. Inside the main module directory fullroom along the settings.py, create .env file and write your own Django secret key in it.
SECRET_KEY=YOUR_DJANGO_SECRET_KEY_HERE
  1. Run the program.
python manage.py runserver