Website for the UofT CloudClub.
- git (Download) or GitHub Desktop (Download)
- Node.JS + npm (Download)
- Either clone this repository using GitHub Desktop (or related software), download as a ZIP and extract, or run
git clone https://github.com/CloudClub-uoft/cloud-club-website
using the terminal and enter your credentials. - Install Node.JS dependencies by navigating to the folder using a terminal and executing
npm install
.
- Start the server by executing
node .
in the terminal. - View the webpage by navigating to
localhost
in your browser.
Consistent fonts, color scheme, etc.
- Header - Adam and Ansh
- Team logo
- Team name
- Navigation bar (use placeholders for now)
- Scrolls with page
- ...
- Footer - Adam and Ansh
- Social media links
- Contact emails
- ...
- Home Page Content - Tamim and Ian
- "Banner"
- Introductory paragraph
- "Learn more", "get involved", etc. promotional material
- ...
- Static Routing (
public
folder)- Create our server
index.js
- Import Express, create server (See Express.js Quickstart)
- Create new folder
public
- Static routing ALL to
public
folder (See Express.js Documentation)
- Create our server