mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-20 22:49:53 +01:00
ce5d2d8685
Resolved conflicts: .gitignore src/static/js/ace.js src/static/js/ace2_inner.js src/static/js/broadcast.js src/static/js/domline.js src/static/pad.html src/static/timeslider.html Ignored conflicts (please merge manually later): node/server.js src/node/utils/Minify.js
13 lines
401 B
Markdown
13 lines
401 B
Markdown
# About the folder structure
|
|
|
|
* **db** - all modules that are accesing the data structure and are communicating directly to the database
|
|
* **handler** - all modules that responds directly to requests/messages of the browser
|
|
* **utils** - helper modules
|
|
|
|
# Module name conventions
|
|
|
|
Module file names start with a capital letter and uses camelCase
|
|
|
|
# Where does it start?
|
|
|
|
server.js is started directly
|