Changes between Version 18 and Version 19 of Ushahidi


Ignore:
Timestamp:
06/28/16 23:11:34 (8 years ago)
Author:
jorrit
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Ushahidi

    v18 v19  
    441. download Ushahidi platform
    55{{{
     6mkdir /var/www/ushahidi
     7cd /var/www/ushahidi
    68git clone https://github.com/ushahidi/platform.git
    79}}}
     
    1719php composer-setup.php --install-dir=/usr/local/bin --filename=composer
    1820}}}
    19 1.
     211. Create the DB
    2022{{{
    2123mysql -u root
     
    26281. Create env file
    2729{{{
    28 cd ????
    2930cat > .env << EOL
    3031DB_HOST=localhost
     
    3839
    3940
    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
    55441. Download API
    5645{{{