Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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




license


GitHub all releases

## 🚀 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 |