Setup your own meal planner.
Explore the docs »
Report Bug
·
Request Feature
Table of Contents
Have you ever faced the problem that you do not know what to cook today? Have you then thought for hours and rummaged through cookbooks? This is where EatMan comes in. He takes the decision away from you by making a random suggestion. Only dishes that EatMan knows and that you have entered yourself are taken into account.
To get a local copy up and running follow these simple example steps.
This is an example of how to list things you need to use the software and how to install them.
- git
- apache
- php
- mysql
sudo apt install git apache2 mysql-server php php-mysqli
curl -s https://raw.githubusercontent.com/Kreisverkehr/EatMan/main/src/setup/install.sh | bash -s
- Clone the repo
cd /opt/ git clone https://github.com/Kreisverkehr/EatMan.git
- Install Composer
https://getcomposer.org/download/
cd EatMan/src/wwwroot ./../setup/installcomposer.sh
- Install Dependencies
php composer.phar install
- Create Database
sudo mysql -e "CREATE DATABASE EatMan" sudo mysql EatMan < ../setup/createdb.sql
- Enter your mysql user in
src/wwwroot/sys/settings.php
<?php $db_user = "mysql_user"; $db_pass = "mysql_super_secret_password";
- Create symlink
sudo ln -s /opt/EatMan/src/wwwroot/ /var/www/html/EatMan
- Click on "Add dish" do start adding your dishes.
- You are now ready to get suggestions from the start page. Just click "Make a suggestion!"
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/Kreisverkehr/EatMan