Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drmvc/app
Skeleton application based on DrMVC framework
https://github.com/drmvc/app
application demo drmvc skeleton
Last synced: 4 days ago
JSON representation
Skeleton application based on DrMVC framework
- Host: GitHub
- URL: https://github.com/drmvc/app
- Owner: drmvc
- License: mit
- Created: 2017-05-26T19:25:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-26T07:55:21.000Z (over 6 years ago)
- Last Synced: 2024-04-28T13:22:42.781Z (7 months ago)
- Topics: application, demo, drmvc, skeleton
- Language: HTML
- Homepage: https://drmvc.com/
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DrMVC Application
Skeleton of application based on DrMVC Framework.
## What inside
* Support for environment variables is implemented through `Dotenv\Dotenv` class
* Few dummy classes inside `app/Controllers` folder
* Ready for usage TWIG template engine, templates in `app/Views`
* Several popular modules added to `packages.json`
* `gulpfile.js` configured to simplify the assembly of static files## How to install
For first need to create new project from the skeleton:
composer create-project drmvc/app application
cd applicationFor enabling support of `gulpfile.js` need to install `gulp` tool
npm install -g gulp
Now need to install dependencies and build static files
npm install
gulpLet's run the php localhost server
cd public
php -S localhost:8000Now you can open your web-browser and go to http://localhost:8000
## Links
* [DrMVC Project](https://drmvc.com/)
* [DrMVC Demo](https://github.com/drmvc/demo)