Computer Science Club of the University of Waterloo's website. https://csclub.uwaterloo.ca
Go to file
Barry Zhang cbcd59b8f5
continuous-integration/drone/push Build is passing Details
Add more november events
2024-11-16 17:00:04 -05:00
.vscode Fix PR CI builds + vscode settings cleanup (#735) 2024-11-16 03:27:08 -05:00
components add light and dark mode scrollbar (#571) 2023-04-28 18:34:46 -04:00
content Add more november events 2024-11-16 17:00:04 -05:00
docs Add some docs about architecture (#459) 2022-06-19 01:45:41 -04:00
hooks
images Add more november events 2024-11-16 17:00:04 -05:00
lib Meet the team sub-issue 2,3,4 (#592) 2023-07-28 14:27:05 -04:00
pages Update team page (#648) 2024-01-26 19:51:25 -05:00
public Create members.json api (#489) 2022-08-08 04:31:15 -04:00
scripts Update team page (#648) 2024-01-26 19:51:25 -05:00
.drone.yml Fix PR CI builds + vscode settings cleanup (#735) 2024-11-16 03:27:08 -05:00
.eslintignore
.eslintrc.js Add CSC Kickoff Event News (#510) 2022-10-05 20:20:47 -04:00
.gitignore Add S23 elections results (#576) 2023-05-11 12:50:49 -04:00
README.md Add some docs about architecture (#459) 2022-06-19 01:45:41 -04:00
deploy-demo.bash
deploy.sh always remove tmpdir in deploy.sh (#530) 2022-11-27 15:00:07 -05:00
next-env.d.ts
next.config.js
package-lock.json April-Code-Party (#567) 2023-03-28 23:17:59 -04:00
package.json April-Code-Party (#567) 2023-03-28 23:17:59 -04:00
postcss.config.json
renovate.json
tsconfig.json
types.d.ts Add Multiple News Items on Homepage and Single News Item Page (Closes #281) (#390) 2022-02-23 00:15:37 -05:00
utils.ts Create members.json api (#489) 2022-08-08 04:31:15 -04:00

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 dependencies
  • npm run build:images to optimize images for the first time after cloning
  • npm run dev to run the dev server (http://localhost:3000)

Production

  • npm install to install project dependencies
  • npm run build to generate html/css/js
  • npm 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 be python -m http.server - not sure if it should actually be used for production :P)

Deploy

  • groups (make sure you're in the www group)
  • curl -o- https://git.csclub.uwaterloo.ca/www/www-new/raw/branch/main/deploy.sh | bash (run on caffeine)