alex27riva / bookshop-BE

Bookshop backend using Flask

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bookshop-BE

Bookshop backend written in Python / Flask

Run

Use Pycharm for development or follow the following instruction for manual install.

Manual install

  • Clone the repo and cd into it
  • create a .env in the root of the project with the example below
  • create Python venv python3 -m venv venv
  • Enter venv source venv/bin/activate
  • Install dependencies pip3 install -r requirements.txt
  • Finally, run the app python3 app/app.py

Keycloak configuration

See Keycloak.md for details.

Flask Configuration

Create a .env file in the root of the project with the following values

CLIENT_ID=bookshop
KEYCLOAK_URI_SCHEME=http
KEYCLOAK_HOST=localhost:8080
KEYCLOAK_REALM=unimi
SECRET_KEY=

Generate a secure SECRET_KEY with:

openssl rand -base64 32

API documentation

See table in API.md.

About

Bookshop backend using Flask

License:MIT License


Languages

Language:Python 98.4%Language:Shell 1.6%