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.
git clone https://github.com/sytanta/jira-clone-sveltekit
npm i
Register and create a Supabase database url and shadow database url for 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="..."
npx prisma db push
After 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 -- --open
To create a production version of the app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.