#Founded in Macedonia Developed at G6
###Requirements
- PHP >= 5.4
- MCrypt PHP extension
- Apache/nginx web server
- Relational database (tested with PostgreSQL and MySQL)
- Composer
- Bower
###How to install
- Clone the code from this repository
- Install the back-end dependencies using
composer install - Setup an vhost that points to the
public/directory - Install the front-end dependencies using
bower install - Edit the configuration files in the
app/config/folder - Run
php artisan migrateandphp artisan db:seedto prepare the database - You can now log in to the admin panel using:
- email:
admin@foundedin.mk - password:
admin123!
After you log in, don't forget to create a new user and delete the default one.
###Development
If you want to set your own development environment, in the bootstrap/ folder create file called environment.php that returns the evn's name. For example:
<?php
return "dev";Then in the config/ folder create new one with the environment's name and inside it put the changed configuration values.