Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sytanta/jira-clone-sveltekit
A simplified Jira clone built with SvelteKit, Supabase, Prisma, Sass, Typescript, Zod
https://github.com/sytanta/jira-clone-sveltekit
clone jira prisma sass supabase svelte sveltekit typescript zod
Last synced: 9 days ago
JSON representation
A simplified Jira clone built with SvelteKit, Supabase, Prisma, Sass, Typescript, Zod
- Host: GitHub
- URL: https://github.com/sytanta/jira-clone-sveltekit
- Owner: sytanta
- Created: 2023-02-03T09:22:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-02T10:24:15.000Z (about 2 months ago)
- Last Synced: 2024-12-02T11:31:58.047Z (about 2 months ago)
- Topics: clone, jira, prisma, sass, supabase, svelte, sveltekit, typescript, zod
- Language: Svelte
- Homepage: https://jira-clone-sveltekit.netlify.app
- Size: 1.55 MB
- Stars: 15
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jira Clone in SvelteKit
This simplified Jira clone is built with SvelteKit, Typescript, Zod, Supabase, Prisma, Sass. Auto formatted with Prettier. It is based on this original [`Jira Clone`](https://github.com/oldboyxx/jira_clone) which is built with React & Node/Express.
## Project Setup
- Clone the project
```sh
git clone https://github.com/sytanta/jira-clone-sveltekit
```- Install dependencies
```sh
npm i
```## Database
- Register and create a Supabase database url and shadow database url for [`Prisma`](https://supabase.com/docs/guides/integrations/prisma)
- Update or create a `.env` file with the following content:
```
DATABASE_URL="..."
SHADOW_DATABASE_URL="..."
JWT_SECRET="..."
PUBLIC_CONTACT_EMAIL="..."
PUBLIC_GITHUB_URL="..."
PUBLIC_PERSONAL_WEBSITE_URL="..."
```- Create a database from the Prisma schema
```sh
npx prisma db push
```## Developing
After installing dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of the app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.