* chore: add markdown lint to ignore no h1 heading in markdown files * chore: update example settings * chore: update example development env file * fix: remove fixed 100% height on container * feat: add individual post page * chore: update README.md * feat: add links to headings in post and add copy button to code blocks * tests: add tests for get post async method * tests: remove heading for test blogs * fix: only add links to headings in markdown body * tests: add tests for post page * tests: add test to check for blog content * docs: add jsdoc comments * chore: fix incorrect env variable format in example * fix: don't render anything if blog post is null * fix: don't render anything until posts are fetched * chore: add docker compose file for prod
18 lines
830 B
Bash
18 lines
830 B
Bash
URLS=https://0.0.0.0:4500;http://0.0.0.0:4501
|
|
FilePostServiceOptions__PostsDirectory=wwwroot/posts
|
|
|
|
# Path needs to match the path where the cert file
|
|
# is mounted in the container
|
|
ASPNETCORE_Kestrel__Certificates__Default__Path=
|
|
|
|
# Password needs to match the password for the cert file
|
|
# you generated
|
|
ASPNETCORE_Kestrel__Certificates__Default__Password=
|
|
|
|
# This is the hostname that the dotnet watch process will use to connect to the browser
|
|
# The first url in the list is the port that the browser will attempt to connect to
|
|
# The second url in the list is the port that the dotnet watch process will be running
|
|
# on in the container. This is necessary for hot reload to work.
|
|
DOTNET_WATCH_AUTO_RELOAD_WS_HOSTNAME=localhost:1234;http://0.0.0.0:5555;http://127.0.0.1
|
|
DETAILED_ERRORS=true
|
|
DOTNET_WATCH_RESTART_ON_RUDE_EDIT=true |