http://ec2-3-1-220-190.ap-southeast-1.compute.amazonaws.com:7321/
User login: mekar
Password: mekar
-
Using Virtual Environment
if you want to run this application using virtual environment make sure you've python3 and pip installed on your operating system
Then create a virtual environment with one of this command (choose one depending on your python alias)python -m venv venvor
python3 -m venv venvor
py -m venv venvThen activate virtual environment
- If your operating system is linux or MacOs:
source venv/bin/activate- If your operating system is windows
venv\Script\activate.batInstall packages
pip install -r requirements.txtTo run application
python manage.py runserver -
Using Docker Compose
if you want to run this application using docker, make sure you've installed docker and docker compose (well tested in Docker version 20.10.11 & docker-compose version 1.21.2)docker-compose -f docker-compose.dev.yaml up -d
To create user for login to application
python manage.py createsuperuserReferences: https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/