Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 906 Bytes

File metadata and controls

45 lines (31 loc) · 906 Bytes

File Structure

  • bin/
  • public/
  • src/
    • components/
    • pages/
    • style/
    • App.js

bin

This directory holds executable js files.
Currently this only holds load-screenshots.js which can be executed with
node bin/load-screenshots.js. This script puts the screenshot file names
from public/images/screenshots into the data.json file for the screenshots page.

public

Holds the index.html file as well as any public resources such as images.

src

All source code for the site.

components

Components used across multiple pages such as navbars and footers.

pages

Full site pages such as the Home page or Screenshots page.

style

scss and css files.

App.js

Top level entry point to the application. Includes switches for react router.