Skip to content

Commit bb4e712

Browse files
committed
first commit
0 parents  commit bb4e712

27 files changed

Lines changed: 3067 additions & 0 deletions

.gitignore

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
node_modules
2+
3+
# Output
4+
.output
5+
.vercel
6+
.netlify
7+
.wrangler
8+
/.svelte-kit
9+
/build
10+
11+
# OS
12+
.DS_Store
13+
Thumbs.db
14+
15+
# Env
16+
.env
17+
.env.*
18+
!.env.example
19+
!.env.test
20+
21+
# Vite
22+
vite.config.js.timestamp-*
23+
vite.config.ts.timestamp-*
24+
25+
26+
# logs and temp
27+
*.log
28+
**/*.log
29+
*.cpuprofile
30+
**/*.cpuprofile
31+
temp
32+
**/temp
33+
*.tmp
34+
**/*.tmp
35+
.eslintcache
36+
37+
# build and dist
38+
build
39+
**/build
40+
dist
41+
**/dist
42+
.svelte
43+
.svelte-kit
44+
**/.svelte
45+
**/.svelte-kit
46+
47+
# env and local
48+
*.local
49+
**/*.local
50+
.env
51+
**/.env
52+
53+
#node_modules and pnpm
54+
node_modules
55+
**/node_modules
56+
# only workspace root has a lock
57+
**/pnpm-lock.yaml
58+
.pnpm-store
59+
**/.pnpm-store
60+
61+
#ide
62+
.idea
63+
**/.idea
64+
.vscode
65+
**/.vscode
66+
67+
# macos
68+
.DS_Store
69+
._.DS_Store
70+
**/.DS_Store
71+
**/._.DS_Store
72+
73+
# other
74+
coverage
75+
76+
# playgrounds
77+
packages/playground/**/*
78+
!packages/playground/README.md

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
engine-strict=true

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# sv
2+
3+
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
4+
5+
## Creating a project
6+
7+
If you're seeing this, you've probably already done this step. Congrats!
8+
9+
```bash
10+
# create a new project in the current directory
11+
npx sv create
12+
13+
# create a new project in my-app
14+
npx sv create my-app
15+
```
16+
17+
## Developing
18+
19+
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
20+
21+
```bash
22+
npm run dev
23+
24+
# or start the server and open the app in a new browser tab
25+
npm run dev -- --open
26+
```
27+
28+
## Building
29+
30+
To create a production version of your app:
31+
32+
```bash
33+
npm run build
34+
```
35+
36+
You can preview the production build with `npm run preview`.
37+
38+
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.

0 commit comments

Comments
 (0)