Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.14 KB

File metadata and controls

37 lines (27 loc) · 1.14 KB

#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

  1. Clone the code from this repository
  2. Install the back-end dependencies using composer install
  3. Setup an vhost that points to the public/ directory
  4. Install the front-end dependencies using bower install
  5. Edit the configuration files in the app/config/ folder
  6. Run php artisan migrate and php artisan db:seed to prepare the database
  7. 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.