bloatless/endocore-app

Endocore bootstrap application

v0.4.0 2019-11-18 19:24 UTC

This package is not auto-updated.

Last update: 2024-05-01 15:36:21 UTC


README

68747470733a2f2f626c6f61746c6573732e6f72672f696d672f6c6f676f2e737667

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