You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Ashley Flanagan a83e87383c Initial commit 1 year ago
src Initial commit 1 year ago
static Initial commit 1 year ago
tests Initial commit 1 year ago
.dockerignore Initial commit 1 year ago
.drone.yml Initial commit 1 year ago
.eslintignore Initial commit 1 year ago
.eslintrc.cjs Initial commit 1 year ago
.gitignore Initial commit 1 year ago
.npmrc Initial commit 1 year ago
.prettierignore Initial commit 1 year ago
.prettierrc Initial commit 1 year ago
Dockerfile Initial commit 1 year ago
README.md Initial commit 1 year ago
docker-compose.yml Initial commit 1 year ago
package-lock.json Initial commit 1 year ago
package.json Initial commit 1 year ago
playwright.config.ts Initial commit 1 year ago
postcss.config.cjs Initial commit 1 year ago
svelte.config.js Initial commit 1 year ago
tailwind.config.cjs Initial commit 1 year ago
tsconfig.json Initial commit 1 year ago
vite.config.ts Initial commit 1 year ago

README.md

sveltekit-prisma-tailwind

Everything you need to build an awesome full stack application. It includes:

This repository is also preconfigured for continuous integration and continuous deployment. Tests will automatically run on push, and the demo branch will automatically deploy to a staging environment.

Developing

Once you've created a project and installed 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

Working with SvelteKit

SvelteKit is a combination of the Svelte component framework and Vite, similar to React's Next or Vue's Nuxt. This repository is preconfigured to use SvelteKit's node adapter, which will create a production node server on build.

Working with Prisma

Prisma is a Node.js and TypeScript ORM that includes both a schema for declaring your database tables, and a query builder called the client that's tailored to your schema.

Prisma includes a variety of database connectors. If your database is supported, initialize prisma:

npx prisma init --datasource-provider [sqlite, postgresql, mysql, sqlserver, mongodb, cockroachdb]

Next, edit prisma/schema.prisma according to your data model, and edit the DATABASE_URL in .env according to your database connection URL.

Finally, create your database, tables, migration file, and client:

npx prisma migrate dev --name init
npx prisma generate

You're now ready to send queries to the database! Refer to the Prisma Client documentation for CRUD operations, relation queries, filtering and sorting, etc.

If you make any changes to the schema, prototype them with:

npx prisma db push
npx prisma generate

When ready, migrate the changes like you would commit them with git, and regenerate the prisma client:

npx prisma migrate dev --name (commit message)
npx prisma generate

Working with Tailwind

Tailwind is a utility-first CSS framework, similar to bootstrap, that can be composed to build any design, directly in your markup.

To speed up your development process, you might want to use a component library. Some popular options are:

Other useful UI libraries include:

Testing

Browser Tests

Add browser tests to tests/test.ts, and run them with:

npm run test

Unit Tests

Add unit tests to src/index.test.ts, and run them with:

npm run test:unit

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.