Browser based strategy game
Pull the develop (will be created) branch, install prerequisites and requierments.
Install virtualenv: (pip3 install virtualenv) and create your env. (virtualenv yourenvname)
Install rabbitMQ: Docs
Install docker: Docs
Install postgresql: Docs
Follow these instructions after installing prerequisites.
Go in to your virtual environment :
virtualenv yourenvname
Install modules:
pip3 install -r requirements.txt
Log in to your psql and create database for migration:
sudo -u postgres -i
psql
CREATE DATABASE "wololoDjango"
After this, your db is ready for running migrations. so do it.
python3 manage.py migrate
You will find exampleInitFile.sh file on the project. change the paths according to your file system. then run it.
sudo ./exampleInitFile.sh
Check opened terminals and give permission to the rabbitMQ and Docker if neccessary.
That's all.
Will be added ASAP.
Use VSCode and install python extension.
Will be discussed.