Skip to content

Setting Up Development Environment

Tanvi Pandit edited this page Oct 26, 2020 · 5 revisions

Setting up the development environment

Setting up with Docker is a one-command process and you do not have to worry about any installation documentation given in rest of the wiki pages. Those documents can be used if you wish to not do the installation via Docker. If you wish to watch the mini tutorial for set up then click on the link in the last line of this page.

Pre-Requisites:

Video Tutorial

Development Environment Setup

To build the project:

docker-compose up --build -d

-d option allows for running the container in the background. If you want to debug the application, run the application without -d

Some useful commands

  • Getting into the bash of the container
 docker ps  -> this will give you the container name 
 docker exec -it <container-name> bash 

Wiki

One-click set up with Docker

Project Workflow

Website Implementation

Database Implementation

Algorithm Implementation

Mock Data

Document Dictionary

Clone this wiki locally