A brand new way to share your schedule with others :)
/
├── public/
├── src/
│ └── pages/ - All browsable pages are stored here
│ └── api/ - Api endpoints
│ └── components/ - Shared reusable components like <Button>
│ └── styles/ - Global styles with variables
│ └── database.ts - Database instance
│ └── utils.ts - Reusable utils
└── package.json
| Command | Action |
|---|---|
npm install |
Installs dependencies |
npm run dev |
Starts local dev server at localhost:4321 |
npm run build |
Build your production site to ./dist/ |
npm run preview |
Preview your build locally, before deploying |