Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dorukgezici/ituscheduler
Create your ITU course schedules in fashion with up-to-date & detailed information.
https://github.com/dorukgezici/ituscheduler
astro go react supabase
Last synced: 4 months ago
JSON representation
Create your ITU course schedules in fashion with up-to-date & detailed information.
- Host: GitHub
- URL: https://github.com/dorukgezici/ituscheduler
- Owner: dorukgezici
- License: gpl-3.0
- Created: 2022-02-25T11:27:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-23T09:44:35.000Z (4 months ago)
- Last Synced: 2024-09-27T21:41:02.167Z (4 months ago)
- Topics: astro, go, react, supabase
- Language: TypeScript
- Homepage: https://ituscheduler.com
- Size: 1.33 MB
- Stars: 10
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
ITU Scheduler
Create your ITU course schedules in fashion with up-to-date & detailed information.
Tech Stack: Astro, React, Supabase UI: Tailwind CSS, shadcn/ui
## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
├── public/
│ └── favicon.ico
├── src/
│ ├── components/
│ │ └── Card.astro
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
├── supabase/
│ └── migrations/ # Supabase migrations
├── components.json # shadcn config
└── package.json
```Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the `public/` directory.
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :-------------------- | :--------------------------------------------------------- |
| `pnpm install` | Installs dependencies |
| `pnpm run dev` | Starts local dev server at `localhost:4321` |
| `pnpm run build` | Build your production site to `./vercel/` |
| `pnpm run sb ...` | Run Supabase CLI commands |
| `pnpm run sb-db` | Run Supabase `db diff` to generate migrations |
| `pnpm run sb-types` | Generate Supabase types to `./src/types/database.types.ts` |
| `pnpm run vercel ...` | Run Vercel CLI commands |