Skip to content

Setting Up Development Environment

yliang123 edited this page Oct 1, 2021 · 2 revisions

Setting Up 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

set up development environment with docker

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

docker-compose up --build

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

preconfigured account

username:admin password:123456

username:manager Password:123456

username:yliang password:1234556

Clone this wiki locally