This is an example todo app. The app was built as an example/reference application, primarily for use with freelunchci.
This app is dockerized and will be kubernetized and freelunchized ;-)
- this app is not intended to be a production ready app or the base for a production app, its purpose is for example/demonstration usage only.
- please see the docs directory for more documentation / information.
- docker
- docker-compose
docker-compose build
docker-compose up
- initialize the database:
docker-compose run web php artisan migrate
- go to:
http://localhost:3000
Ctrl+C
if app is launched interactively or usedocker-componse kill
if launched as daemon (-d
)
- if you would like to change something in the app to cause a flci build you can update the app's version (resources/views/layouts/app.blade.php > appver).
- not yet implemented
- this app came, in large part, from laravel's quickstart-basic
- start db:
docker-compose up -d db