Computer Science Club of the University of Waterloo's website.
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.
 
 
 
 
 
Sat Arora 43bcc8a57c Deleted Amy's thing :') 4 months ago
.vscode Fix Andrew Wang Photos (#471) 11 months ago
components Add 2023 internship repo (#515) 8 months ago
content Deleted Amy's thing :') 4 months ago
docs Add some docs about architecture (#459) 11 months ago
hooks Meet the Team page (#94) 2 years ago
images Added myself (annie sun) to website (#544) 4 months ago
lib Fixed exec name showing middle name (#537) 4 months ago
pages Update Meet the Team page for Fall 2022 (#508) 8 months ago
public Create members.json api (#489) 10 months ago
scripts Create members.json api (#489) 10 months ago
.drone.yml Create members.json api (#489) 10 months ago
.eslintignore Add mdx support and playground 2 years ago
.eslintrc.js Add CSC Kickoff Event News (#510) 8 months ago
.gitignore Create members.json api (#489) 10 months ago
README.md Add some docs about architecture (#459) 11 months ago
deploy-demo.bash Script to deploy site to your CSC website (#99) 2 years ago
deploy.sh always remove tmpdir in deploy.sh (#530) 6 months ago
next-env.d.ts Upgrade Next, React, TypeScript (#91) 2 years ago
next.config.js Update content for advice pages (#299) 2 years ago
package-lock.json Create members.json api (#489) 10 months ago
package.json Create members.json api (#489) 10 months ago
postcss.config.json Convert rems to px and use calc to convert on build time 2 years ago
renovate.json Force node 16+ and npm 7+ in renovate (#192) 2 years ago
tsconfig.json Dynamically generate event calendar (#332) 2 years ago
types.d.ts Add Multiple News Items on Homepage and Single News Item Page (Closes #281) (#390) 1 year ago
utils.ts Create members.json api (#489) 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 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)