A web-based, shareable, self-hosted Markdown editor built with deno
|
|
vor 2 Tagen | |
|---|---|---|
| .githooks | vor 2 Tagen | |
| .vscode | vor 2 Jahren | |
| assets | vor 2 Tagen | |
| components | vor 2 Tagen | |
| islands | vor 2 Tagen | |
| routes | vor 2 Tagen | |
| static | vor 2 Tagen | |
| tests | vor 2 Tagen | |
| utils | vor 2 Tagen | |
| .dockerignore | vor 4 Tagen | |
| .drone.yml | vor 2 Jahren | |
| .gitignore | vor 3 Tagen | |
| Dockerfile | vor 1 Woche | |
| LICENSE | vor 2 Jahren | |
| README.md | vor 2 Tagen | |
| client.ts | vor 2 Wochen | |
| deno.json | vor 3 Tagen | |
| deno.lock | vor 3 Tagen | |
| main.ts | vor 2 Wochen | |
| tailwind.config.ts | vor 4 Tagen | |
| vite.config.ts | vor 4 Tagen |
A web-based, shareable, self-hosted Markdown editor built with deno
Visit https://post.jerryliao.cn
You can deploy the project with docker by using Dockerfile in this repo to
build a docker image or use Deno Deploy officially recommended in
this doc
Install deno runtime according to this doc,
then run the setup task to install dependencies and enable git hooks:
deno task setup
Start the dev server and visit localhost:8000:
deno task dev
deno task dev - Start the development serverdeno task test - Run all tests (backend + UI)deno task check - Check formatting, linting, and typesdeno task setup - Install dependencies and configure git hooksA pre-commit hook is configured via .githooks/ to automatically format staged
files and run tests before each commit. If auto-formatting fails, the commit is
aborted. The deno task setup command enables this by setting core.hooksPath
to .githooks/.