Meals, as the name suggests, is an application to manage meals. It was developed at AOE to manage employee lunch meals. What initially started as a small tool has now grown in to a mature and enterprise ready application, and it’s still growing. It’s been open source ever since, and we love to share it.
A major part of the application can be configured via environment variables located in the .env file. If setting environment variable is not an option, like in shared web hosting, then create a .env.prod file and configure them there.
Install application dependencies
composer install
Create database schema
bin/console doctrine:migrations:migrate -n
Generate static assets
cd src\Resources && yarn build
A pre-built cloud installation image of meals can be found in docker hub. It is automatically updated whenever new features, security or bug fixes are introduced.
The application configuration is same as in the hosted environment. However, no setup is required here.
Not a problem. You can download the source code from Github on your local machine. The development environment is configured using docker
and ddev
, so these must be pre-installed. After this, just one command
make run-devbox
and voila! you have a fully configured ready to use development environment.