Computer Science Club of the University of Waterloo's website.
https://csclub.uwaterloo.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
8 months ago | |
---|---|---|
.vscode | 11 months ago | |
components | 10 months ago | |
content | 8 months ago | |
docs | 12 months ago | |
hooks | 2 years ago | |
images | 8 months ago | |
lib | 9 months ago | |
pages | 9 months ago | |
public | 10 months ago | |
scripts | 10 months ago | |
.drone.yml | 10 months ago | |
.eslintignore | 2 years ago | |
.eslintrc.js | 2 years ago | |
.gitignore | 10 months ago | |
README.md | 12 months ago | |
deploy-demo.bash | 2 years ago | |
deploy.sh | 2 years ago | |
next-env.d.ts | 2 years ago | |
next.config.js | 2 years ago | |
package-lock.json | 10 months ago | |
package.json | 10 months ago | |
postcss.config.json | 2 years ago | |
renovate.json | 2 years ago | |
tsconfig.json | 2 years ago | |
types.d.ts | 1 year ago | |
utils.ts | 10 months ago |
README.md
README
Documentation
Development
Dependencies
Make sure that you have node
>= 14 and npm
>= 7. Node 14 ships with npm v6,
so if you're using node 14, you would need to upgrade npm. Alternatively you
could also upgrade to node 16, which ships with npm 7.
How to upgrade npm: npm i -g npm
Local
npm install
to install project dependenciesnpm run build:images
to optimize images for the first time after cloningnpm run dev
to run the dev server (http://localhost:3000)
Production
npm install
to install project dependenciesnpm run build
to generate html/css/jsnpm run export
to move the built files (along with assets in the public directory) to the/out
directory- Use your favourite web server to host the files in the
/out
directory. (A very simple one would bepython -m http.server
- not sure if it should actually be used for production :P)
Deploy
groups
(make sure you're in thewww
group)curl -o- https://git.csclub.uwaterloo.ca/www/www-new/raw/branch/main/deploy.sh | bash
(run oncaffeine
)