Try   HackMD

CodiMD Manual Deployment

Manual deployment is the best when you're developing CodiMD. If you are deploying the service for production use, Docker Deployment is the faster and easier choice.

Requirements

  • Node.js 10.x LTS up to 11.x.
  • Database (PostgreSQL or MySQL)
    • Use charset utf8

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More β†’
Hint:

  • You could use other DBMS, such as: MariaDB, SQLite, or MSSQL, BUT we recommend only PostgreSQL or MySQL.
  • We will only support PostgreSQL and MySQL in future database migrations, if any.
  • npm
  • libssl-dev for building scrypt (see here for further information)
  • Bash (for the setup script)
  • For building CodiMD we recommend using a machine with at least 2GB RAM

Deployment Steps

  1. Clone the CodiMD repository.
git clone https://github.com/hackmdio/codimd.git
  1. Enter the directory, install npm dependencies and create configs.
cd codimd bin/setup
  1. Configure the instance with:

  2. Build front-end bundle with webpack.

npm run build
  1. Modify the file named .sequelizerc, change the value of the variable url with your db connection string. For example: postgres://username:password@localhost:5432/codimd

  2. Start the engine:

    ​​​​node app.js

Image Not Showing Possible Reasons
  • The image file may be corrupted
  • The server hosting the image is unavailable
  • The image path is incorrect
  • The image format is not supported
Learn More β†’
Hint: If you are developing and want webpack to continuously rebuild the front-end code, use:

npm run dev

To auto-reload the server, you could use nodemon and run:

nodemon --watch app.js --watch lib --watch locales app.js.
tags: CodiMD Docs