Project

General

Profile

Actions

E-Lite » History » Revision 3

« Previous | Revision 3/4 (diff) | Next »
iri, 05/06/2012 04:10 PM


E-Lite

Install Etherpad-Lite ....

As root, do :

- On Debian, if needed, install dependencies :

apt-get install gzip git-core curl python libssl-dev pkg-config build-essential

- Download the lastest version of node.js from http://nodejs.org/#download

- Extract this with

tar xf node-v0.6*

- Go to the node directory

cd node-v0.6*

- Build node with

./configure && make && make install

As user (not root), do :

- Go to the directory where EL will be installed
- Clone the git repository

git clone 'git://github.com/Pita/etherpad-lite.git'

- Go to the directory of source code clone
cd etherpad-lite

- Install dependencies
bin/installDeps.sh

- Start EL with
bin/run.sh

- With the web browser, go to http://pad.scolring.org or http://www.scolring.org:9001/

After, if install is ok, settings can be modified :

- Keep in the same directory (etherpad-lite)
- Edit the settings.json file :

nano settings.json
(or with vi, emacs, ...)

To install Sqlite3 support :
- Keep in the same directory (etherpad-lite)
- Enter the command :

npm install sqlite3

To update to the lastest version :

git pull origin

To run with debug (see settings.json too) :

bin/debugRun.sh

To switch to develop branch :

git checkout develop

bin/run.sh

To switch to master branch :

git checkout master

bin/run.sh

Return to Tutorials

Updated by iri about 12 years ago · 3 revisions