Setup & support start from AUD $299.
For professional server setup please contact Mathew Vlandys [email protected].
Download & install GIT from:
http://git-scm.com/download/mac
Download & install the Heroku toolbelt from:
-
Sign up to Heroku (http://www.heroku.com)
-
Create a new app
-
Within the dashboard click on the plus + button in the top right
-
Enter in an App Name (take note)
-
Select a region
-
Click on the Create App button
-
Create a new database
-
From the dashboard select Databases from the top menu
-
Click on the Create Database button
-
Select a plan - **Dev Plan is free
-
Click on the Add Database button
-
Click on the newly created database entry
-
Take note of the following details:
-
Host
-
Database
-
User
-
Password
- Open the Terminal app
- Download the EYT Server source code using GIT
git clone https://github.com/mvlandys/EYTServer.git
- CD into the source code folder
cd EYTServer
- Open the database config file
open app/config/database.php
- Find the line 'default' => 'sqlite',
- Change 'sqlite' to 'pgsql'
- Find the line 'pgsql' => array(
- Fill in the following entries with the values noted in the previous step:
- Host, Database, Username, Password
- Save and close the database.php file
- Enter the following command:
git remote add heroku [email protected]:AppName.git
- Replace AppName with your Heroku app name as configured in Step 2.2.b
- Enter the following command:
git push heroku master
- Open your internet browser
- Go to http://AppName.herokuapp.com/
- Replace AppName with your Heroku app name as configured in Step 2.2.b
- Login with the default credentials:
- Username: admin
- Password: admin
- Open the settings screen of the EYT app
- Click on the (i) button in the bottom right corner
- Enter the following for the Database URL
- AppName.herokuapp.com
- Replace AppName with your Heroku app name as configured in Step 2.2.b