A SvelteKit-based frontend for AS-BUILT, a smart documentation system for managing projects, clients, and technical files. https://as-built.vercel.app
  • TypeScript 47.5%
  • Svelte 47%
  • JavaScript 3.3%
  • CSS 1.8%
  • HTML 0.4%
Find a file
2024-05-28 17:40:59 +02:00
.github/workflows chore: remove unit tests as we do not use them 2024-05-16 22:09:50 +02:00
.husky chore: add husky and commitizen 2024-03-05 20:50:06 +01:00
.vscode chore: add vscode settings 2024-04-25 21:42:28 +02:00
drizzle fix: pR changes 2024-05-21 20:45:15 +02:00
src refactor: changes on the last PR review 2024-05-28 12:36:42 +02:00
static Initial commit 2024-02-20 18:55:09 +01:00
tests test: client tests passed 2024-05-22 11:15:29 +02:00
.eslintignore Initial commit 2024-02-20 18:55:09 +01:00
.eslintrc.cjs Initial commit 2024-02-20 18:55:09 +01:00
.gitignore chore: add istanbul coverage 2024-04-04 19:12:48 +02:00
.npmrc Initial commit 2024-02-20 18:55:09 +01:00
.prettierignore Initial commit 2024-02-20 18:55:09 +01:00
.prettierrc add TailwindCSS 2024-02-20 18:57:21 +01:00
components.json add shadcn-svelte 2024-02-20 19:08:15 +01:00
drizzle.config.ts add basic multi tenancy 2024-03-02 23:59:47 +01:00
package-lock.json feat: ik heb iets opgefuck en kreeg het niet in orde dus ben opnieuw begonnen maar alles werkt wel 2024-05-21 11:26:08 +02:00
package.json feat: ik heb iets opgefuck en kreeg het niet in orde dus ben opnieuw begonnen maar alles werkt wel 2024-05-21 11:26:08 +02:00
playwright.config.ts add Playwright reporting 2024-03-03 00:11:49 +01:00
postcss.config.cjs add TailwindCSS 2024-02-20 18:57:21 +01:00
README.md Initial commit 2024-02-20 18:55:09 +01:00
svelte.config.js add TailwindCSS 2024-02-20 18:57:21 +01:00
tailwind.config.js add shadcn-svelte 2024-02-20 19:08:15 +01:00
tsconfig.json Initial commit 2024-02-20 18:55:09 +01:00
vite.config.ts chore: remove unit tests as we do not use them 2024-05-16 22:09:50 +02:00

create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm create svelte@latest

# create a new project in my-app
npm create svelte@latest my-app

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

Building

To create a production version of your 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.