Computer Science Club of the University of Waterloo's website.
https://csclub.uwaterloo.ca
Amy Wang
8bb5f160f0
continuous-integration/drone/push Build is passing
Details
Implements all the changes mentioned in #237, except for the following: - Services, Live Streaming - "Icecast" still links to https://icy.csclub.uwaterloo.ca/ - Services, In-Office Books - "extensive collection of Computer Science-related books" still links to http://csclub.uwaterloo.ca/library/ (If these items need to be changed, then we can create new issues for them) Closes #237 Co-authored-by: Amy <a258wang@uwaterloo.ca> Reviewed-on: #246 Reviewed-by: j285he <j285he@localhost> Reviewed-by: n3parikh <n3parikh@localhost> Co-authored-by: Amy <a258wang@csclub.uwaterloo.ca> Co-committed-by: Amy <a258wang@csclub.uwaterloo.ca> |
||
---|---|---|
.vscode | ||
components | ||
content | ||
hooks | ||
lib | ||
pages | ||
public | ||
.drone.yml | ||
.eslintignore | ||
.eslintrc.js | ||
.gitignore | ||
README.md | ||
check-lockfile.js | ||
deploy-demo.bash | ||
next-env.d.ts | ||
next.config.js | ||
package-lock.json | ||
package.json | ||
postcss.config.json | ||
renovate.json | ||
tsconfig.json | ||
types.d.ts | ||
utils.ts |
README.md
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 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)