21 lines
496 B
Markdown
21 lines
496 B
Markdown
# SimpleNotes Server
|
|
|
|
# Notice
|
|
Please put behind a reverse proxy like nginx when hosting publicly
|
|
|
|
# Username/Password
|
|
Just put any credentials then remember them
|
|
|
|
# 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/data -p 19428:19428 simplenotesserver:latest
|
|
``` |