Prisma is an app that strengthens the relationship between people with memory loss and the people close to them. It does this by providing a living, collaborative digital photo album that can be populated with content of interest to these people.
This repository hosts the central API for the project.
Be sure to check out our home page prisma.care for more information.
Project Prisma was part of Open Knowledge Belgium's open Summer of Code 2017. A student team coached by Frederik Vincx (@fritsbits) worked on it in July 2017:
The app was conceived in a one-month collaborative design project in a care home in Zonhoven, Belgium, in January 2017. Together with personel and dementia design researchers the team honed in on a static prototype that was later refined during the Open Summer of Code. More info about it in this blog post.
Want to help out? First, peruse the Prisma wiki to learn about the roadmap, milestones and approach to developing software for people with dementia.
Requires PHP version >=5.6.4
.
Make sure Composer is installed.
After cloning, install project dependencies:
composer install
Generate an app key:
php artisan key:generate
We use MySQL, you can add settings for your local database configuration in a .env
file (see example). All other configuration that is specific to your local environment should also be set in this file.
Run database migrations and seed:
php artisan migrate
php artisan db:seed
Serve the application:
php artisan serve
Run API tests:
./vendor/bin/phpunit --testsuite Feature
This uses the testing
environment, so make sure you have a .env.testing
file for all configuration specific to running the tests (such as a separate database).