Skip to content

Commit 731dbbc

Browse files
committed
add license and update readmi
1 parent 3af037c commit 731dbbc

File tree

2 files changed

+35
-28
lines changed

2 files changed

+35
-28
lines changed

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Ivan Semochkin
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

+14-28
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,24 @@
1-
# create-svelte
1+
# Algorithm Visualizer
22

3-
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
3+
This project is a pathfinding algorithm visualizer, allowing users to visually comprehend how different pathfinding algorithms operate in real time.
44

5-
## Creating a project
5+
## Technologies
66

7-
If you're seeing this, you've probably already done this step. Congrats!
7+
- Svelte/SvelteKit
8+
- TypeScript
9+
- Pathfinding Algorithms (A*, BFS, DFS, Dijkstra)
810

9-
```bash
10-
# create a new project in the current directory
11-
npm create svelte@latest
11+
## Features
12+
- Interactive Visualization: Clear representation of algorithms on a live grid.
13+
- Speed Control: Adjust execution speed, pause, and rewind.
14+
- Creating Obstacles: Build walls and set their weight to customize problem conditions.
1215

13-
# create a new project in my-app
14-
npm create svelte@latest my-app
15-
```
1616

17-
## Developing
17+
## Contribution
1818

19-
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
19+
If you have ideas for improvements or want to contribute to the project, please feel free to fork the repository, make your changes, and submit pull requests. We welcome contributions from the community to make this project even better.
2020

21-
```bash
22-
npm run dev
21+
## License
2322

24-
# or start the server and open the app in a new browser tab
25-
npm run dev -- --open
26-
```
23+
This project is licensed under the MIT License - see the [LICENSE](LICENSE.txt) file for details.
2724

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://kit.svelte.dev/docs/adapters) for your target environment.

0 commit comments

Comments
 (0)