This is a simple Slim 3 application that manages a list of books
It uses :
- Slim 3
- Illuminate as its database ORM
- Twig
This project uses Composer. Run composer install
to install the dependencies.
- cd public && php -s localhost:8888 index.php
- navigate to http://localhost:8888
To use the Vagrant VM, install Vagrant, Virtual Box & the VirtualBox Extension Pack.
vagrant up
- navigate to http://localhost:8888
You can deploy this app to Cloud Foundry with cf push
. Look in manifest.yml
and .bp-config/options.json
for configuration.
To use SQLite as a database:
- create database
sqlite
.read data/seed-sqlite.sql
.save data/database.sqlite
- copy
app/settings.php.dist
toapp/settings.php
- replace the database section
'db' => [
// Illuminate/database configuration
'driver' => 'sqlite',
'database' => 'data/database.sqlite',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
],
The favicon is from the open source project Twemoji. The graphics are copyright 2020 Twitter, Inc and other contributors. The graphics are licensed under CC-BY 4.0.