RxCLosAngeles / downtownstimulus

2 stars 0 forks source link

downtownstimulus

Repo for downtown stimulus

Deploy Instructions

  1. Export .env file to enviroment and fill up suitable environment variables
cp .env.test .env
  1. Build Images and Stand up containers
docker-compose up --build

Note - If images are already present docker-compose up

The Project is now up and running -

Backend API - http://127.0.0.1:8000

Frontend - http://localhost:3000

  1. Create a New superuser for Backend API

docker exec -it downtownstimulus_api_1 downtownapi/manage.py createsuperuser

API Docs


Deployment From Scratch

  1. Install Docker -
  2. Install docker-compose (Version > 1.25.5) docker-compose --version
  3. Clone Project -
    git clone https://github.com/ethifylabs/downtownstimulus
    git checkout develop

Build Project Following Above Instructions