First, clone the repository and be sure to do it recursively, so all the submodules will be pulled too.
git clone --recursive git@github.com:nightsh/glider.git
Then, create the database and some user for it.
Time to import the database schema:
mysql -u <USER> -p <DATABASE_NAME> < glider-schema.sql
Configuration is stored in protected/etc/*
. You might want to tweak the
folowing:
config.base.php
is used to indicate the environment- copy
config.env.php
to a new file, named for exampleconfig.development.php
- in
config.base.php
define the environment as theENV
constant - in the newly created environment file, fill in your database login details
- log in using
<BASE_URL>/?login
- Apache web server (can be easily tweaked for nginx)
- PHP 5.3+
- MariaDB / MySQL 5.5+
- tested on GNU/Linux only!
First, clone the repository. Please create a feature branch for anything you might want to modify, add or remove. Finally, open a pull request, and I'll be happily review / merge it ;-)