https://github.com/stichoza/motorhead-tegetarius
Nothing interesting, just playing with Lumen.
https://github.com/stichoza/motorhead-tegetarius
Last synced: about 2 months ago
JSON representation
Nothing interesting, just playing with Lumen.
- Host: GitHub
- URL: https://github.com/stichoza/motorhead-tegetarius
- Owner: Stichoza
- Created: 2015-12-29T23:50:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-16T15:23:33.000Z (over 10 years ago)
- Last Synced: 2025-03-12T06:18:36.186Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 76.2 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Motörhead Tegetarius
====================
Nothing interesting, just playing with Lumen.
## Requirements
#### Lumen requirements
- PHP >= 5.5.9
- OpenSSL PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
#### App requirements
- node (with npm)
- bower
- gulp
- composer
- bower
## Setting up
- Copy `.env.example` to `.env` and configure database, cache, session, etc drivers (you can set `session` and `cache` drivers to `file` instead of `redis` or `memcached`).
- Install PHP dependencies `composer install`
- Node development dependencies `npm install`
- Front-end libraries and assets `bower install`
- Build raw (CoffeeScript, Stylus) files `gulp build` or run a watcher task `gulp watch`
- Run database migrations `php artisan migrate` (remember to set database config correctly in `.env` file)
- Run a local server `php artisan serve --port=8888`
## Notes
The app uses 3 minute caching for statistics. Set `cache` driver to `array` in config to disable cache and see updates immediately.