Go to file
Mike Nolan d8684a0c77 Initial commit 2023-10-29 12:35:35 -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 Initial commit 2023-10-29 12:35:35 -05:00
SimpleNotes.csproj Initial commit 2023-10-29 12:35:35 -05:00

README.md

SimpleNotes Server

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/out/data -p 19428:19428 simplenotesserver:latest