https://github.com/bloatless/endocore-app
Endocore Bootstrap Application
https://github.com/bloatless/endocore-app
Last synced: 3 months ago
JSON representation
Endocore Bootstrap Application
- Host: GitHub
- URL: https://github.com/bloatless/endocore-app
- Owner: bloatless
- License: mit
- Created: 2018-12-08T17:04:18.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-18T19:30:25.000Z (over 6 years ago)
- Last Synced: 2024-04-26T06:04:27.197Z (about 2 years ago)
- Language: PHP
- Homepage: https://bloatless.org
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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](https://github.com/bloatless/endocore).
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:
```bash
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:
```bash
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](https://github.com/bloatless/endocore).
## License
MIT