Permalink
Cannot retrieve contributors at this time
Switch branches/tags
IE-again
IE11-null-password
api_functions_versioning
append-chat-api
applySettings
aria-label-for-button
authorID-in-userlist
backend-tests
blocks-for-custom-script-and-styles
browser-based-css-wrap
browserify
bump-swagger
bumpDeps
caret-refactor
chat-and-users
chat-users-flow-css
check-for-abiword-path
cheerio
chrome-list-handling
chrome-paste
clean-css-update
compress-contents-on-startup
deb-package-builder
dep-bump
develop
drag-and-drop-between-frames-sandbox
drag-to-bottom
editbar-accessibility
err-on-bad-data
etherpad-export-and-import
export-author-color
export-privacy
exportConvert-hook
exporthtmlendhook
express-require
extend-getAttributesOnSelection
extra-spaces-on-paste
feature/message-domains
feature/npm-worker
feature/test_ctrl_z
fix-2320-crash
fix-#3157
fix-attribmanager-removeLineAttrib
fix-chat-scroll
fix-dead-keys
fix-export-regressions
fix-import-error
fix-ol-indent
fix-removeAttribOnLine
fix-socket-admin-etc
fix-textLinesMutator
fix-timeslider
fix-xss-on-useragent
fix/adjust_loading_animation
fix/admin-settings-json
fix/attribmanager-removeattribonline
fix/clean-up-after-removing-list-attrs
fix/export-wildcards
fix/group-export
fix/reimplement-ace-getAttributeOnSelection
fix/rtl-option
fix/settings-file-arg-absolute
fix/toolbar-timeslider-button
fixes-2945
getATtriuteOnSelection-extend
getattrselectionlogic
go-away-npm
handleClientMessageTimesliderHook
hook_for_exportHTMLStyles
html-e-hook
html-export-nesting
i18n
ie-fix-backspace
iframe-issues
iframes-must-die
image-support-hook
image
import-export-improvements
indentLevels
indentation
ios82
issue-2522-broken-json
javascript-bower
jsdom-go-away
load-testing-settings
logfilefix
master
more-socket-io-fixes
new-express
new-icons
new-sethtml-tests
only-fire-change-events-once
pad-options
padsanitize-requirejs
plugin-hook-for-settings-earlier
prefetch
re-enable-cookies
readme
refactor-timeslider
reflow-toolbar-properly
release/releases-1.1.3
release/releases-1.1.4
release/releases-1.1.5
release/releases-1.2
release/releases-1.2.1
release/releases-1.2.2
release/releases-1.2.3
release/releases-1.2.4
release/releases-1.2.5
release/releases-1.2.6
release/1.2.7
release/1.2.8
release/1.2.10
release/1.2.11
release/1.2.12
release/1.2.81
release/1.3
release/1.4.0
release/1.5.0
release/1.5.1
release/1.5.2
release/1.5.3
release/1.5.4
release/1.5.5
release/1.5.6
release/1.5.7
release/1.6.2
release/1.6.3
releases-1.1.1
releases-1.1.2
remove-dokuwiki
remove-infinite
remove-old
remove-security-replace-with-secutil
remove-sessions-script
removel-lite-reference-from-exports
require-kernel-change
requirejs-noiframe
requirejs
rewrite-pad-path
sanitizer
save-prefs
session-on-timeslider
session-spam-database
slow-chrome
socket-io-1
some-documentation
static-deps
static-versions
support-images
swipe-gestures
switch-to-pad-derosm2
switch-to-pad
test/add-assertions-cs_req
test/changeset_req-assertions
timeslider-fix
tmp-socketio-debug-resource
toolbarItemsInSettings
try/client-init-remove-checkRep
update_html10n
use-jsdom
utf-8-check
utf8-check
version-on-admin-page
warnings-in-pad-contents
webrtc-experiment
write-delay
Nothing to show
Find file
Copy path
Fetching contributors…
| #!/bin/sh | |
| #Move to the folder where ep-lite is installed | |
| cd `dirname $0` | |
| #Was this script started in the bin folder? if yes move out | |
| if [ -d "../bin" ]; then | |
| cd "../" | |
| fi | |
| ignoreRoot=0 | |
| for ARG in $* | |
| do | |
| if [ "$ARG" = "--root" ]; then | |
| ignoreRoot=1 | |
| fi | |
| done | |
| #Stop the script if it's started as root | |
| if [ "$(id -u)" -eq 0 ] && [ $ignoreRoot -eq 0 ]; then | |
| echo "You shouldn't start Etherpad as root!" | |
| echo "Please type 'Etherpad rocks my socks' or supply the '--root' argument if you still want to start it as root" | |
| read rocks | |
| if [ ! "$rocks" == "Etherpad rocks my socks" ] | |
| then | |
| echo "Your input was incorrect" | |
| exit 1 | |
| fi | |
| fi | |
| #Prepare the environment | |
| bin/installDeps.sh $* || exit 1 | |
| #Move to the node folder and start | |
| echo "Started Etherpad..." | |
| SCRIPTPATH=`pwd -P` | |
| exec node "$SCRIPTPATH/node_modules/ep_etherpad-lite/node/server.js" $* | |
Copy lines Copy permalink - View git blame
- Open new issue