simplenotesserver/README.md

18 lines
419 B
Markdown
Raw Normal View History

2023-10-29 17:35:35 +00:00
# SimpleNotes Server
2023-10-29 17:36:43 +00:00
# Username/Password
Just put any credentials then remember them
2023-10-29 17:35:35 +00:00
# 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
```