Yet another note taking app
Note
Project is in early development and not intended for regular use.
- Asp .NET Core Web API
- Entity Framework Core
- PostgreSQL
- Vue.js
- Tailwind CSS + DaisyUI
App is accessible at https://inkgoose.obsqrbtz.space.
At the moment only raw markdown input is supported (CommonMark spec).
Important
Notes are not encrypted and stored as plain markdown server-side.
Example:
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="password"
POSTGRES_HOST="inkgoose-db" # do not change
POSTGRES_PORT="5432"
POSTGRES_DB="inkgoose"
API_PORT="3033"
WEB_PORT="3034"
VITE_API_HOST="<api_url>:$API_PORT"
<api_url>
is the address to access inkgoose-api
container from outside.
docker compose build
docker compose up -d
Configure your server to enable forwarding from http://localhost:API_PORT
and http://localhost:WEB_PORT
to urls on your domain.
Please, see Contributing