mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00

* seo friendly urls * custom client serve-static module * database fixes * fix recent pages * other fixes
Description
WIP
Installation
Make sure you have pnpm installed npm install -g pnpm
$ git clone https://github.com/docmost/docmost
$ pnpm install
Running the app
Development
Frontend
$ pnpm nx run client:dev
Backend
# build extension package first
$ nx run @docmost/editor-ext:build
# development
$ pnpm nx run server:start
# watch mode
$ pnpm nx run server:start:dev
Production
$ pnpm run build
$ pnpm nx run server:start:prod
The server will be available on http://localhost:3000
Migrations
# This creates a new empty migration file named 'init'
$ pnpm nx run server:migration:create init
# Generates 'init' migration file from existing entities to update the database schema
$ pnpm nx run server:migration:generate init
# Runs all pending migrations to update the database schema
$ pnpm nx run server:migration:run
# Reverts the last executed migration
$ pnpm nx run server:migration:revert
# Shows the list of executed and pending migrations
$ pnpm nx run server:migration:show
Languages
TypeScript
96.4%
CSS
3.2%
JavaScript
0.2%
Dockerfile
0.1%