Changes between Version 18 and Version 19 of Ushahidi
- Timestamp:
- 06/28/16 23:11:34 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ushahidi
v18 v19 4 4 1. download Ushahidi platform 5 5 {{{ 6 mkdir /var/www/ushahidi 7 cd /var/www/ushahidi 6 8 git clone https://github.com/ushahidi/platform.git 7 9 }}} … … 17 19 php composer-setup.php --install-dir=/usr/local/bin --filename=composer 18 20 }}} 19 1. 21 1. Create the DB 20 22 {{{ 21 23 mysql -u root … … 26 28 1. Create env file 27 29 {{{ 28 cd ????29 30 cat > .env << EOL 30 31 DB_HOST=localhost … … 38 39 39 40 40 1. Create ushahidi user 41 {{{ 42 useradd --create-home --shell /bin/bash ushahidi 43 passwd ushahidi 44 su - ushahidi 45 }}} 46 1. Create DB 47 {{{ 48 mysql -u root -p 49 }}} 50 {{{ 51 CREATE DATABASE ushahidi_db; 52 GRANT ALL ON ushahidi_db.* to ushahidi_user@localhost IDENTIFIED BY 'ushahidi-db-password'; 53 quit; 54 }}} 41 42 43 55 44 1. Download API 56 45 {{{