HackMD/README.md

159 lines
6.4 KiB
Markdown
Raw Normal View History

2016-01-19 16:21:45 +00:00
HackMD
2015-05-04 07:53:29 +00:00
===
2015-08-15 04:15:42 +00:00
[![Join the chat at https://gitter.im/hackmdio/hackmd](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/hackmdio/hackmd?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2016-10-03 02:33:30 +00:00
HackMD lets you create realtime collaborative markdown notes on all platforms.
Inspired by Hackpad, with more focus on speed and flexibility.
Still in the early stage, feel free to fork or contribute to HackMD.
2015-05-04 07:53:29 +00:00
2016-10-03 02:33:30 +00:00
Thanks for using! :smile:
2015-05-15 04:58:13 +00:00
[docker-hackmd](https://github.com/hackmdio/docker-hackmd)
---
2016-10-03 02:33:30 +00:00
Before you go too far, here is the great docker repo for HackMD.
With docker, you can deploy a server in minutes without any downtime.
[migration-to-0.4.0](https://github.com/hackmdio/migration-to-0.4.0)
---
We've dropped MongoDB after version 0.4.0.
2016-10-03 02:33:30 +00:00
So here is the migration tool for you to transfer the old DB data to the new DB.
This tool is also used for official service.
2016-01-29 19:28:45 +00:00
Browsers Requirement
---
- Chrome >= 45, Chrome for Android >= 47
- Safari >= 9, iOS Safari >= 8.4
- Firefox >= 44
- IE >= 9, Edge >= 12
- Opera >= 34, Opera Mini not supported
- Android Browser >= 4.4
2015-09-27 06:45:21 +00:00
Prerequisite
2015-07-11 04:52:04 +00:00
---
2016-06-28 01:38:31 +00:00
- Node.js 4.x or up (test up to 6.2.2)
- Database (PostgreSQL, MySQL, MariaDB, SQLite, MSSQL)
2015-12-15 23:53:56 +00:00
- npm and bower
2015-07-11 04:52:04 +00:00
2015-09-27 06:45:21 +00:00
Get started
2015-06-01 10:04:25 +00:00
---
2015-09-27 06:45:21 +00:00
1. Download a release and unzip or clone into a directory
2016-10-03 02:33:30 +00:00
2. Enter the directory and type `npm install && bower install`, which will install all the dependencies
3. Setup the configs, see more below
4. Setup environment variables which will overwrite the configs
5. Run the server as you like (node, forever, pm2)
2015-06-01 10:04:25 +00:00
2016-06-14 14:57:54 +00:00
Upgrade guide
2016-06-01 16:13:01 +00:00
---
2016-06-14 19:30:19 +00:00
If you are upgrading HackMD from an older version, follow these steps:
2016-06-14 14:57:54 +00:00
2016-10-03 02:33:30 +00:00
1. Fully stop your old server first (important)
2. `git pull` or do whatever that updates the files
3. `npm install && bower install` to update dependencies
4. Modify the file named `.sequelizerc`, change the value of the variable `url` with your db connection string
For example: `postgres://username:password@localhost:5432/hackmd`
5. Run `node_modules/.bin/sequelize db:migrate`, this step will migrate your db to the latest schema
2016-06-14 19:21:54 +00:00
6. Start your whole new server!
2016-06-01 16:13:01 +00:00
2015-07-01 16:10:20 +00:00
Structure
---
```
hackmd/
├── tmp/ --- temporary files
├── docs/ --- document files
2015-07-01 16:10:20 +00:00
├── lib/ --- server libraries
└── public/ --- client files
├── css/ --- css styles
├── js/ --- js scripts
├── vendor/ --- vendor includes
└── views/ --- view templates
```
Configuration files
2015-06-01 10:04:25 +00:00
---
2016-10-03 02:33:30 +00:00
There are some configs you need to change in the files below
2015-05-15 04:58:13 +00:00
```
./config.json --- for server settings
./public/js/common.js --- for client settings
2015-05-15 04:58:13 +00:00
```
Client settings `common.js`
---
| variables | example values | description |
| --------- | ------ | ----------- |
| debug | `true` or `false` | set debug mode, show more logs |
| domain | `localhost` | domain name |
| urlpath | `hackmd` | sub url path, like: `www.example.com/<urlpath>` |
Environment variables (will overwrite other server configs)
---
| variables | example values | description |
| --------- | ------ | ----------- |
2016-10-03 02:33:30 +00:00
| NODE_ENV | `production` or `development` | set current environment (will apply corresponding settings in the `config.json`) |
| DOMAIN | `hackmd.io` | domain name |
| URL_PATH | `hackmd` | sub url path, like `www.example.com/<URL_PATH>` |
| PORT | `80` | web app port |
| DEBUG | `true` or `false` | set debug mode, show more logs |
Server settings `config.json`
---
| variables | example values | description |
| --------- | ------ | ----------- |
| debug | `true` or `false` | set debug mode, show more logs |
| domain | `localhost` | domain name |
| urlpath | `hackmd` | sub url path, like `www.example.com/<urlpath>` |
| port | `80` | web app port |
| alloworigin | `['localhost']` | domain name whitelist |
| usessl | `true` or `false` | set to use ssl server (if true will auto turn on `protocolusessl`) |
| protocolusessl | `true` or `false` | set to use ssl protocol for resources path |
| urladdport | `true` or `false` | set to add port on callback url (port 80 or 443 won't applied) |
| usecdn | `true` or `false` | set to use CDN resources or not |
| db | `{ "dialect": "sqlite", "storage": "./db.hackmd.sqlite" }` | set the db configs, [see more here](http://sequelize.readthedocs.org/en/latest/api/sequelize/) |
| sslkeypath | `./cert/client.key` | ssl key path (only need when you set usessl) |
| sslcertpath | `./cert/hackmd_io.crt` | ssl cert path (only need when you set usessl) |
| sslcapath | `['./cert/COMODORSAAddTrustCA.crt']` | ssl ca chain (only need when you set usessl) |
| dhparampath | `./cert/dhparam.pem` | ssl dhparam path (only need when you set usessl) |
| tmppath | `./tmp/` | temp directory path |
| defaultnotepath | `./public/default.md` | default note file path |
| docspath | `./public/docs` | docs directory path |
| indexpath | `./public/views/index.ejs` | index template file path |
| hackmdpath | `./public/views/hackmd.ejs` | hackmd template file path |
| errorpath | `./public/views/error.ejs` | error template file path |
| prettypath | `./public/views/pretty.ejs` | pretty template file path |
| slidepath | `./public/views/slide.hbs` | slide template file path |
| sessionname | `connect.sid` | cookie session name |
| sessionsecret | `secret` | cookie session secret |
| sessionlife | `14 * 24 * 60 * 60 * 1000` | cookie session life |
| staticcachetime | `1 * 24 * 60 * 60 * 1000` | static file cache time |
| heartbeatinterval | `5000` | socket.io heartbeat interval |
| heartbeattimeout | `10000` | socket.io heartbeat timeout |
| documentmaxlength | `100000` | note max length |
2016-03-15 03:30:43 +00:00
Third-party integration api key settings
---
| service | file path | description |
| ------- | --------- | ----------- |
2016-05-21 14:48:00 +00:00
| facebook, twitter, github, gitlab, dropbox, google | `config.json` | for signin |
| imgur | `config.json` | for image upload |
2016-05-15 13:51:35 +00:00
| google drive, dropbox | `public/js/common.js` | for export and import |
Third-party integration oauth callback urls
---
| service | callback url (after the server url) |
| ------- | --------- |
| facebook | `/auth/facebook/callback` |
| twitter | `/auth/twitter/callback` |
| github | `/auth/github/callback` |
| gitlab | `/auth/gitlab/callback` |
| dropbox | `/auth/dropbox/callback` |
| google | `/auth/google/callback` |
Operational Transformation
2015-06-01 10:04:25 +00:00
---
2016-10-03 02:33:30 +00:00
From 0.3.2, we started supporting operational transformation.
2016-10-03 03:00:54 +00:00
It makes concurrent editing safe and will not break up other users' operations.
2016-10-03 02:33:30 +00:00
Additionally, now can show other clients' selections.
See more at http://operational-transformation.github.io/
2015-05-08 03:52:30 +00:00
2015-09-25 02:39:09 +00:00
**License under MIT.**