forked from volkszaehler/volkszaehler.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
33 lines (20 loc) · 845 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
There is an small script named install.sh which should do the installation for you.
For more info refer to the wiki: http://wiki.volkszaehler.org/howto/getstarted
== Dependencies ==
You need composer (http://getcomposer.org/).
You can either install it privately to your VZ installation (1) or system wide (2)
(1) VZ private
Suitable if you need composer only for VZ.
1. Download and execute composer installer
curl -sS https://getcomposer.org/installer | php
2. Run composer to install VZ dependencies:
./composer.phar install"
(2) System installation
1. Download latest composer snapshot
wget -O /usr/local/bin/composer https://getcomposer.org/composer.phar
chmod a+x /usr/local/bin/composer
2. Run composer to install VZ dependencies:
composer install
Optional step:
If you are a developer, run
composer --dev update