A web-based, shareable, self-hosted Markdown editor built with deno
|
|
před 2 dny | |
|---|---|---|
| .githooks | před 2 dny | |
| .vscode | před 2 roky | |
| assets | před 2 dny | |
| components | před 2 dny | |
| islands | před 2 dny | |
| routes | před 2 dny | |
| static | před 2 dny | |
| tests | před 2 dny | |
| utils | před 2 dny | |
| .dockerignore | před 3 dny | |
| .drone.yml | před 2 roky | |
| .gitignore | před 2 dny | |
| Dockerfile | před 1 týdnem | |
| LICENSE | před 2 roky | |
| README.md | před 2 dny | |
| client.ts | před 1 týdnem | |
| deno.json | před 2 dny | |
| deno.lock | před 3 dny | |
| main.ts | před 1 týdnem | |
| tailwind.config.ts | před 4 dny | |
| vite.config.ts | před 4 dny |
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/.