File tree Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Original file line number Diff line number Diff line change 1
- # sv
1
+ # Sveltekit With Bootstrap Starter by ssaaqi
2
2
3
- Everything you need to build a Svelte project, powered by [ ` sv ` ] ( https://github.com/sveltejs/cli ) .
3
+ Everything you need to build a Svelte project, powered by [ ` sveltekit ` ] ( https://svelte.dev/ ) .
4
4
5
5
## Creating a project
6
6
7
7
If you're seeing this, you've probably already done this step. Congrats!
8
8
9
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
10
+ # Clone this repository to start
11
+ git clone https://github.com/saaqi/sveltekit-bootstrap-saaqi.git
15
12
```
16
13
17
14
## Developing
18
15
19
- Once you've created a project and installed dependencies with ` npm install` (or ` pnpm install` or ` yarn ` ), start a development server:
16
+ Once you've created a project and installed dependencies with ` bun install` (or ` npm install` ), start a development server:
20
17
21
18
``` 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
19
+ bun dev (or ` npm run dev` )
26
20
```
27
21
28
22
## Building
29
23
30
24
To create a production version of your app:
31
25
32
26
``` bash
33
- npm run build
27
+ bun run build
34
28
```
35
29
36
- You can preview the production build with ` npm run preview` .
30
+ You can preview the production build with ` bun run preview` .
37
31
38
32
> To deploy your app, you may need to install an [ adapter] ( https://svelte.dev/docs/kit/adapters ) for your target environment.
You can’t perform that action at this time.
0 commit comments