bloatless / endocore-app
Endocore bootstrap application
Requires
- php: ^7.2
- bloatless/endocore: >=0.4
This package is not auto-updated.
Last update: 2024-10-30 18:19:10 UTC
README
Bloatless Endocore App
A boilerplate application for the Endocore framework.
You can use this bootstrap application to quickly start a new project based on the Endocore framework.
This repository includes all required files and samples so you can start building your project right away.
Installation
The easiest way to create a new Endocore application is by using composer. In the directory where you want to start your project execute the following command:
php composer.phar create-project bloatless/endocore-app my_project_name
You can of course change my_project_name
to whatever project name you want.
After that you can change into the just created project folder and start a PHPs webserver to test if the application was installed correctly:
cd my_project_name
php -S localhost:8080 -t public public/index.php
You can now access your application by pointing your browser to http://localhost:8080
.
Of course you can also use any other webserver like nginx or apache. Just point the document root
of your projects vhost to the public
folder inside your project folder.
Documentation
The Endocore app sourcecode includes some useful examples and includes inline documentation wherever necessary.
Additionally there is a complete documentation on the Endocore framework GitHub page.
License
MIT