Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/websoftwares/example-webapp
https://github.com/websoftwares/example-webapp
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/websoftwares/example-webapp
- Owner: websoftwares
- License: mit
- Created: 2015-04-20T11:54:10.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-02T06:14:29.000Z (over 9 years ago)
- Last Synced: 2024-10-12T13:16:02.822Z (3 months ago)
- Language: PHP
- Homepage:
- Size: 238 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#Example web application
PHP Example web application with an [Action-Domain-Responder](https://github.com/pmjones/adr) skeleton##System requirements
- PHP 5.5+
- MySQL 5.6+
- Linux system
- [Working smtp server](http://askubuntu.com/a/368046)
- Memcached, Easy insall on ubuntu systems:```
sudo apt-get install memcached php5-memcached
```## Installation
1) Execute the database queries from the sql folder.
2) Create a .env in the root (not document root) folder use the example to match your environment.
3) Install composer in your project:
```
curl -s http://getcomposer.org/installer | php
```
4) Install dependencies:```
composer install
```5) Start php web server from root folder (not document root)
```
php -S localhost:8080 -t public/
```## Testing
In the tests folder u can find several tests.## License
The [MIT](http://opensource.org/licenses/MIT "MIT") License (MIT).