Skip to content

Computer-Science-Club-OCC/Computer-Science-Club-OCC.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OCC Computer Science Club Website

You can view a preview of the site here: https://computer-science-club-occ.github.io/

Getting Started

Visit and follow instructions from Guide for Developers

Docker & Docker Compose

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

Cleaning Docker Env

Deleting the mongo container will delete all data in the database

  1. Stop the container(s) using the following command: docker-compose down --volumes
  2. Delete all images using the following command: docker image prune -a