du2x / pystro

pystro is a simple and easy to use and to extend restaurant api and webapp written in Flask.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pystro

Build Status

pystro is a simple and easy to use and to extend api for restaurant managements apps.

pystro has basic restaurant business functionalities, expressed visually on following use case diagram:

use case diagram

pystro is written in Flask, tries to follow principles SOLID, KISS and DRY and Flask specific best practices, taking, for example, miguelgrinberg as one of the main references. We also follow pep8 style guide.

pystro uses SQLAlchemy as ORM framework. The models of pystro are those on the following class diagram:

models class diagram

pystro also uses Flask-Restful extension for better api design and creates a Flask Blueprint for each restaurant unit added on database, and registers the proper resources for them.

Usage

pystro runs with python3 (and possibly with python2). There are a docker container configuration. You can run pystro with or without docker.

With docker

Simply run docker-compose.

docker-compose up --build

Without docker

  1. First, you need to install mysql 5-6+ and create the pystro database and user.

    Enter mysql shell (mysql -uroot -p) and type the following commands:

    create database pystro;

    create user pystro@localhost;

    grant all privileges on pystro.* to pystro@localhost identified by 'devpassword';

  2. Create and activate the python virtualenv.

    virtualenv -p python3 venv

    source venv/bin/activate.sh

  3. export FLASK_APP

    export FLASK_APP=pystro.py

  4. run it

    flask run

We are open!

pystro will be always open source, licensed under GPL3.

Feel free to contribute!

About

pystro is a simple and easy to use and to extend restaurant api and webapp written in Flask.

License:GNU General Public License v3.0


Languages

Language:Python 97.8%Language:Dockerfile 0.9%Language:Mako 0.8%Language:Shell 0.5%