Install with git

1. Install git

sudo apt install git

2. Enter the desired folder where you want to install myaac.

On linux, this can be /var/www

cd /var/www

3. Clone the repository from github

git clone https://github.com/otsoft/myaac.git

4. Enter the folder

cd myaac

5. (optional) Change branch to develop to use latest features

git checkout develop

You are done. If you did Step 5., then also follow next (optional) steps.

6. (optional) Install composer: https://getcomposer.org/

7. (optional) Install dependencies

After installing composer, install dependencies with following command

php composer.phar install

or just

composer install

(depends on how you installed the composer on your system)

Last updated