Developed by Gold's Gym Team:
- Adrian Wijaya (1806205363)
- Ari Angga Nugraha (1806205086)
- Christopher Samuel (180614115)
- Iqrar Agalosi Nureyza (1806204902)
- Clone this repo.
git clone https://gitlab.com/iqrar99/full-room.git
- Create virtual environment by using
venv
inside the repository.
On MacOs and Linux:
python3 -m venv env
On Windows:
python -m venv env
- Activate the environment.
On MacOS and Linux:
source env/bin/activate
On Windows:
.\env\Scripts\activate
- Install all the packages.
pip install -r requirements.txt
- Inside the main module directory
fullroom
along thesettings.py
, create.env
file and write your own Django secret key in it.
SECRET_KEY=YOUR_DJANGO_SECRET_KEY_HERE
- Run the program.
python manage.py runserver