Time is money and setting up a project can be a lot when you could be focusing on the business logic ā now you can using this powerful SvelteKit enterprise grade template.
Tap into your true potential and you're going to be laughing "Ha Ha! Business" out loud in no time to the bank.
Every part of the SvelteKit stack for enterprise is optimized to go blazingly fast to please investors and shareholders alike using:
You can change how everything works from your database to authentication if you read their documentation ā for example by default Prisma uses SQLite because it requires no setup but it's trivial to change it to use any other SQL database if you want.
You can start a new project by pressing "Use this template" inside GitHub which copies the project over with a clean Git history.
You can use degit
to download the project if you don't want to create a new repository, or if you're not using GitHub which also gives you a clean slate to start from.
npx degit joysofcode/enterprise-stack
š¦ļø Install the project dependencies.
npm i
āļø Rename .env.example
to .env
and set your environment variables inside.
DATABASE_URL="file:./dev.db"
š Create the database and generate the Prisma client from your Prisma schema.
npx prisma db push
This is great for trying things out but you can use Prisma migrate for production.
You can change the database schema inside prisma/schema.prisma
and run npx prisma studio
to look at your database.
šæļø Run the development server.
npm run dev
You can pick a SvelteKit adapter you want and deploy this to anywhere. If you don't have a full-stack hosting solution you can use a serverless SQL database provider and host your frontend somewhere else.
npm run build
You can also preview the build.
npm run preview