mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
Update README.md and settings.json.template: use mysql or sqlite for production
This commit is contained in:
parent
fa9b36df0f
commit
7362992191
2 changed files with 4 additions and 1 deletions
|
@ -74,6 +74,8 @@ Here is the **[FAQ](https://github.com/Pita/etherpad-lite/wiki/FAQ)**
|
||||||
## Next Steps
|
## Next Steps
|
||||||
You can modify the settings in the file `settings.json`
|
You can modify the settings in the file `settings.json`
|
||||||
|
|
||||||
|
You should use a dedicated database such as "mysql" if you are planning on using etherpad-lite in a production environment, the "dirty" database driver is only for testing and/or development purposes.
|
||||||
|
|
||||||
You can update to the latest version with `git pull origin`. The next start with bin/run.sh will update the dependencies
|
You can update to the latest version with `git pull origin`. The next start with bin/run.sh will update the dependencies
|
||||||
|
|
||||||
Look at this wiki pages:
|
Look at this wiki pages:
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
"ip": "0.0.0.0",
|
"ip": "0.0.0.0",
|
||||||
"port" : 9001,
|
"port" : 9001,
|
||||||
|
|
||||||
//The Type of the database. You can choose between sqlite and mysql
|
//The Type of the database. You can choose between dirty, sqlite and mysql
|
||||||
|
//You should use mysql or sqlite for anything else than testing or development
|
||||||
"dbType" : "dirty",
|
"dbType" : "dirty",
|
||||||
//the database specific settings
|
//the database specific settings
|
||||||
"dbSettings" : {
|
"dbSettings" : {
|
||||||
|
|
Loading…
Reference in a new issue