15 lines
354 B
Markdown
15 lines
354 B
Markdown
|
# SimpleNotes Server
|
||
|
|
||
|
# You need .NET 7 (Unless you have docker)
|
||
|
[Get .NET 7](https://dotnet.microsoft.com/en-us/download/dotnet/7.0)
|
||
|
|
||
|
# Run Command Line
|
||
|
```bash
|
||
|
$ dotnet run
|
||
|
```
|
||
|
|
||
|
# Run in docker
|
||
|
```bash
|
||
|
docker build -t simplenotesserver:latest .
|
||
|
docker run -d --restart=unless-stopped -v ./data:/App/out/data -p 19428:19428 simplenotesserver:latest
|
||
|
```
|