mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-24 18:56:32 -05:00
Remove .sequelizerc
After https://github.com/hedgedoc/hedgedoc/pull/969 was merged, a separate configuration file for the sequelize-cli is no longer required. Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
4c9fc63884
commit
bf0a7ebee7
4 changed files with 2 additions and 31 deletions
|
@ -1,8 +0,0 @@
|
|||
var path = require('path');
|
||||
|
||||
module.exports = {
|
||||
'config': path.resolve('config.json'),
|
||||
'migrations-path': path.resolve('lib', 'migrations'),
|
||||
'models-path': path.resolve('lib', 'models'),
|
||||
'url': 'change this'
|
||||
}
|
12
bin/heroku
12
bin/heroku
|
@ -2,18 +2,6 @@
|
|||
|
||||
set -e
|
||||
|
||||
cat << EOF > .sequelizerc
|
||||
var path = require('path');
|
||||
|
||||
module.exports = {
|
||||
'config': path.resolve('config.json'),
|
||||
'migrations-path': path.resolve('lib', 'migrations'),
|
||||
'models-path': path.resolve('lib', 'models'),
|
||||
'url': process.env.DATABASE_URL
|
||||
}
|
||||
|
||||
EOF
|
||||
|
||||
cat << EOF > config.json
|
||||
|
||||
{
|
||||
|
|
|
@ -46,10 +46,6 @@ if [ ! -f config.json ]; then
|
|||
cp config.json.example config.json
|
||||
fi
|
||||
|
||||
if [ ! -f .sequelizerc ]; then
|
||||
cp .sequelizerc.example .sequelizerc
|
||||
fi
|
||||
|
||||
echo "Installing packages..."
|
||||
yarn install --pure-lockfile
|
||||
yarn install --production=false --pure-lockfile
|
||||
|
@ -61,7 +57,6 @@ Edit the following config file to setup HedgeDoc server and client.
|
|||
Read more info at https://github.com/hedgedoc/hedgedoc#configuration-files
|
||||
|
||||
* config.json -- HedgeDoc config
|
||||
* .sequelizerc -- db config
|
||||
EOF
|
||||
|
||||
# change directory back
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue