This is the CPOSC website for the event being held April 26th, 2025. Use the instructions below to pull down the codebase and start making changes.
Pull down the project and run:
npm installThe following command runs the project locally here.
npm run devThis codebase is set up with Github Pages - meaning, anything on a pre-determined branch is in "production" and is visible as a website.
Code STILL needs to be pushed to the master branch in this repo.
When ready to deploy, run the following commands.
npm run build
// copy and paste the CNAME file from the root directory, to inside the /dist folder
git add .
git commit -m "message describing my changes"
git push origin master
npm run push-liveThe command npm run build is set to push your built dist files to the gh-pages branch. Github will then display the contents of gh-pages as a website.
Lint with ESLint
npm run lint