You can view a preview of the site here: https://computer-science-club-occ.github.io/
Visit and follow instructions from Guide for Developers
Docker compose will create a containerized environment for the frontend, backend, and mongo. To quickly start the entire stack on any machine with docker:
docker-compose up
To run just a mongo instance:
docker-compose up -d mongo
Stopping the environment:
docker-compose down
Rebuild All Containers:
docker-compose build
Deleting the mongo container will delete all data in the database
- Stop the container(s) using the following command:
docker-compose down --volumes
- Delete all images using the following command:
docker image prune -a