Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.
/ app Public archive

Skeleton application based on DrMVC framework

License

Notifications You must be signed in to change notification settings

drmvc/app

Repository files navigation

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 application

For 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
gulp

Let's run the php localhost server

cd public
php -S localhost:8000

Now you can open your web-browser and go to http://localhost:8000

Links