-
Notifications
You must be signed in to change notification settings - Fork 4
Installing and configuring
John Bent edited this page Jul 18, 2020
·
4 revisions
git clone [this_repo] . # in the dir where the web server runs
./install.sh
Then just edit host, username, password, and table in the config file specified by the install script.
BOOM! It's that easy!
The rest of this documentation is deprecated but I'm a bit nervous to delete it. :)
- Download Composer or update
composer self-update
. - Clone this repository:
git clone https://github.com/jeanbez/io-500-webpage.git
- Open the cloned repository and run
php composer.phar install
.
If Composer is installed globally, run
composer install
You can now either use your machine's webserver (e.g. Apache) to view the website, or start up the built-in webserver with:
bin/cake server -p 8765
Then visit http://localhost:8765
to see the page.
Read and edit the environment specific config/app_local.php
and setup the 'Datasources'
and any other configuration relevant for your application. Other environment agnostic settings can be changed in config/app.php
.