Skip to content

Commit a105975

Browse files
committed
add license update readme with setup instructions
1 parent 44a4cda commit a105975

2 files changed

Lines changed: 33 additions & 17 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 - present devicon
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,33 @@
1-
# sv
1+
# Devicon.dev
22

3-
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
3+
Website for devicon
44

5-
## Creating a project
5+
## Running locally
66

7-
If you're seeing this, you've probably already done this step. Congrats!
7+
You'll need node and pnpm setup.
88

9-
```bash
10-
# create a new project in the current directory
11-
npx sv create
9+
First install dependencies with:
1210

13-
# create a new project in my-app
14-
npx sv create my-app
11+
```bash
12+
pnpm install
1513
```
1614

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:
15+
Then start server with:
2016

2117
```bash
22-
npm run dev
18+
pnpm run dev
2319

2420
# or start the server and open the app in a new browser tab
25-
npm run dev -- --open
21+
pnpm run dev -- --open
2622
```
2723

2824
## Building
2925

3026
To create a production version of your app:
3127

3228
```bash
33-
npm run build
29+
pnpm run build
3430
```
3531

36-
You can preview the production build with `npm run preview`.
32+
You can preview the production build with `pnpm run preview`.
3733

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)