Github Pages Link:
https://cosi116a-brandeis-infovis-fall23.github.io/cosi-116a-f24-final-project-repository-team-10/
Demo Video Link: https://youtu.be/4mFCSgQdDxA?si=dk9mBVGMW7Y-nTJh
- Samiya Islam
- Jaimie Louie
- Kelden Dorji
- Ian Ho
-
Clone this repository to your local machine. E.g., in your terminal / command prompt
CD
to where you want this the folder for this activity to be. Then rungit clone <YOUR_REPO_URL>
-
In
README.md
update the URL above to point to your GitHub pages website. -
CD
or open a terminal / command prompt window into the cloned folder. -
Start a simple python webserver. E.g., one of these commands:
python -m http.server 8000
python3 -m http.server 8000
py -m http.server 8000
If you are using Python 2 you will need to usepython -m SimpleHTTPServer 8000
instead, but please switch to Python 3 as Python 2 was sunset on 2020.01.01.
-
Wait for the output:
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/)
-
Now open your web browser (Firefox or Chrome) and navigate to the URL: http://localhost:8000
-
README.md
is this explanatory file for the repo. -
index.html
contains the main website content. -
style.css
contains the CSS. -
package.json
andpackage-lock.json
contain dependencies for the libraries we used. -
LICENCE
is the source code license.
Each folder has an explanatory README.md
file
-
data
includes our JSON data files. -
favicons
contains the favicons for the course projects. -
files
contain our slides (PDF) and demo video (MP4). -
images
contains our application and sketch screenshots. -
js
contains our JavaScript files.visualization.js
is the main code that builds our visualizations.
-
lib
contains the JavaScript libraries we used (d3).