summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Mehren2021-05-03 22:07:56 +0200
committerDavid Mehren2021-05-03 22:26:08 +0200
commite6d4ac5f9a50b28b9d6e456d7fc343194ab1cbee (patch)
treea0bbc5dd84230bb2dcc92a7e297b9ff2cca9f0d4
parent73e26e1d2d2a331cec68ff9c02b315fe41f45859 (diff)
Remove mention of .sequelizerc from docs
Signed-off-by: David Mehren <git@herrmehren.de>
-rw-r--r--docs/content/setup/manual-setup.md10
1 files changed, 3 insertions, 7 deletions
diff --git a/docs/content/setup/manual-setup.md b/docs/content/setup/manual-setup.md
index d1c3dcad..26882ba2 100644
--- a/docs/content/setup/manual-setup.md
+++ b/docs/content/setup/manual-setup.md
@@ -35,18 +35,14 @@
For details, have a look at [the configuration documentation](../configuration.md).
5. *:octicons-light-bulb-16: If you use the release tarball for 1.7.0 or newer, this step can be skipped.*
Build the frontend bundle by running `yarn run build`.
-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:
+6. It is recommended to start your server manually once:
```shell
NODE_ENV=production yarn start
```
This way it's easier to see warnings or errors that might occur.
<small>You can leave out `NODE_ENV=production` for development.</small>
-8. If you use the example config, HedgeDoc should now be available at [http://127.0.0.1:3000](http://127.0.0.1:3000).
-9. Run the server as you like (node, forever, pm2, systemd, Init-Scripts).
+7. If you use the example config, HedgeDoc should now be available at [http://127.0.0.1:3000](http://127.0.0.1:3000).
+8. Run the server as you like (node, forever, pm2, systemd, Init-Scripts).
See [below](#systemd-unit-example) for an example using systemd.
## Upgrading