A web-based, shareable, self-hosted Markdown editor built with deno
|
|
2 dni temu | |
|---|---|---|
| .githooks | 2 dni temu | |
| .vscode | 2 lat temu | |
| assets | 2 dni temu | |
| components | 2 dni temu | |
| islands | 2 dni temu | |
| routes | 2 dni temu | |
| static | 2 dni temu | |
| tests | 2 dni temu | |
| utils | 2 dni temu | |
| .dockerignore | 3 dni temu | |
| .drone.yml | 2 lat temu | |
| .gitignore | 2 dni temu | |
| Dockerfile | 1 tydzień temu | |
| LICENSE | 2 lat temu | |
| README.md | 2 dni temu | |
| client.ts | 1 tydzień temu | |
| deno.json | 2 dni temu | |
| deno.lock | 3 dni temu | |
| main.ts | 1 tydzień temu | |
| tailwind.config.ts | 4 dni temu | |
| vite.config.ts | 4 dni temu |
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/.