# download source code
git clone https://github.com/babygame0ver/Career-Finder
# go inside directory
cd Career-Finder
# install, create virtualenv and activate virtualenv (optional)
pip install virtualenv
virtualenv venv
source venv/bin/activate
# install requirements
pip install -r requirements.txt
# run development server locally
python manage.py makemigrations
python manage.py migrate
python manage.py runserver 0.0.0.0:8080
2. Steps for runing project locally - via Docker image (Easy & preferred - no dependencies installation)
Pull publicly hosted image from docker repository & run directly on your system
docker run -d -p 8080:8000 --name careerfinder babygame0ver/docker-repository:careerfinder
Visit : http://127.0.0.1:8080 in your browser