DEMO application using the php framework phalcon
A simple web page where we can manage a contact list of our customers which are stored in the database.
The contact list has the following fields:
- first name
- last name
- email address
- creation date
In your favourite terminal run the following commands:
$ docker-compose up -d
$ docker-compose exec php-phalcon composer install
Now you should be able to open the application in you browser via http://localhost:8765/
The app uses the included sqlite3 database app/storage/database.db
. Tables are already set up, the queries can be found in app/storage/database-structure.sql
.