Go to file
Mike Nolan 12b3c36249 Fix docker run 2023-10-29 15:27:14 -05:00
.gitignore Initial commit 2023-10-29 12:35:35 -05:00
Dockerfile Initial commit 2023-10-29 12:35:35 -05:00
LICENSE.md Initial commit 2023-10-29 12:35:35 -05:00
Program.cs Initial commit 2023-10-29 12:35:35 -05:00
README.md Fix docker run 2023-10-29 15:27:14 -05:00
SimpleNotes.csproj Initial commit 2023-10-29 12:35:35 -05:00

README.md

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

Run Command Line

 $ dotnet run

Run in docker

$ docker build -t simplenotesserver:latest .
$ docker run -d --restart=unless-stopped -v ./data:/App/data -p 19428:19428 simplenotesserver:latest