A web-based, shareable, self-hosted Markdown editor built with deno
|
|
il y a 2 jours | |
|---|---|---|
| .githooks | il y a 2 jours | |
| .vscode | il y a 2 ans | |
| assets | il y a 2 jours | |
| components | il y a 2 jours | |
| islands | il y a 2 jours | |
| routes | il y a 2 jours | |
| static | il y a 2 jours | |
| tests | il y a 2 jours | |
| utils | il y a 3 jours | |
| .dockerignore | il y a 3 jours | |
| .drone.yml | il y a 2 ans | |
| .gitignore | il y a 2 jours | |
| Dockerfile | il y a 1 semaine | |
| LICENSE | il y a 2 ans | |
| README.md | il y a 2 jours | |
| client.ts | il y a 1 semaine | |
| deno.json | il y a 2 jours | |
| deno.lock | il y a 3 jours | |
| main.ts | il y a 1 semaine | |
| tailwind.config.ts | il y a 4 jours | |
| vite.config.ts | il y a 4 jours |
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 check
formatting and run tests before each commit. The deno task setup command
enables this by setting core.hooksPath to .githooks/.