summaryrefslogtreecommitdiff
path: root/docs/content
diff options
context:
space:
mode:
authorDavid Mehren2021-03-06 17:31:11 +0100
committerGitHub2021-03-06 17:31:11 +0100
commitd764b696dfd9edca2d8c6a6318344ddd6cd17a43 (patch)
tree190a4e03b5a15c77801ce1bc8ff7e10292c1adb7 /docs/content
parent4c9fc63884615f4b80ed54c438cdd64f76aa9ee8 (diff)
parent4e5ff6f075b631e35b879c136279d0bafeacfa5b (diff)
Merge pull request #997 from hedgedoc/docs/remove_sequelizerc
Diffstat (limited to '')
-rw-r--r--docs/content/setup/manual-setup.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/docs/content/setup/manual-setup.md b/docs/content/setup/manual-setup.md
index d09eadc8..4d03b752 100644
--- a/docs/content/setup/manual-setup.md
+++ b/docs/content/setup/manual-setup.md
@@ -24,12 +24,8 @@
4. Modify the file named `config.json` or configure HedgeDoc through environment variables which will overwrite the configs, see docs [here](../configuration.md).
5. **If using the release tarball for 1.7.0 or newer, this step can be skipped.**
Build the frontend bundle by `yarn run build` (use `yarn run dev` if you are in development)
-6. Modify the file named `.sequelizerc`, change the value of the variable `url` to your db connection string. For example:
- - `postgres://username:password@localhost:5432/hedgedoc`
- - `mysql://username:password@localhost:3306/hedgedoc`
- - `sqlite:///opt/hedgedoc/hedgedoc.sqlite` (note that you need to use an absolute path to the SQLite file)
-7. It is recommended to start your server manually once: `NODE_ENV=production yarn start`, this way it's easier to see warnings or errors that might occur (leave out `NODE_ENV=production` for development).
-8. Run the server as you like (node, forever, pm2, SystemD, Init-Scripts)
+6. It is recommended to start your server manually once: `NODE_ENV=production yarn start`, this way it's easier to see warnings or errors that might occur (leave out `NODE_ENV=production` for development).
+7. Run the server as you like (node, forever, pm2, SystemD, Init-Scripts)
## How to upgrade your installation