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 which is built with React & Node/Express.
- Clone the project
git clone https://github.com/sytanta/jira-clone-sveltekit- Install dependencies
npm i-
Register and create a Supabase database url and shadow database url for
Prisma -
Update or create a
.envfile 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
npx prisma db pushAfter installing dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --openTo create a production version of the app:
npm run buildYou can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.