A web-based, shareable, self-hosted Markdown editor built with deno
|
|
пре 1 дан | |
|---|---|---|
| .githooks | пре 2 дана | |
| .vscode | пре 2 година | |
| assets | пре 2 дана | |
| components | пре 1 дан | |
| islands | пре 1 дан | |
| routes | пре 1 дан | |
| static | пре 2 дана | |
| tests | пре 1 дан | |
| utils | пре 2 дана | |
| .dockerignore | пре 3 дана | |
| .drone.yml | пре 2 година | |
| .gitignore | пре 2 дана | |
| Dockerfile | пре 1 недеља | |
| LICENSE | пре 2 година | |
| README.md | пре 2 дана | |
| client.ts | пре 1 недеља | |
| deno.json | пре 1 дан | |
| deno.lock | пре 1 дан | |
| main.ts | пре 1 недеља | |
| tailwind.config.ts | пре 3 дана | |
| vite.config.ts | пре 3 дана |
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/.