- If you have Docker installed, you could follow Use Docker Compose instruction.
- If you have Minikuber installed, you could follow Use Minikube instruction.
Here is the preview:
- Use Docker-Compose to deploy web, api-server, and db Docker containers locally on your machine.
$ docker-compose -f deploy-compose/DockerCompose.yml up -d
-
Open website in your browser.
-
Use Docker-Compose to take down the containers if you're done with testing.
$ docker-compose -f deploy-compose/DockerCompose.yml down
Sorry, it's still WIP.
.
├── backend
├── deploy-compose
└── frontend
backend/
is the Rails API server.frontend/
is the NextJS web server.deploy-compose/
contains the Docker-compose file for local deployment (for test or debug)