Skip to content
Snippets Groups Projects
Forked from ACIDES / Hiboo
511 commits behind the upstream repository.
Stéphane's avatar
Stéphane Burdin authored
Currently translated at 92.2% (178 of 193 strings)

Translation: Hiboo/main
Translate-URL: https://translate.tedomum.net/projects/hiboo/main/fr/
65e4bd8e

Hiboo

Quickstart dev guide:

Dependencies:

Debian:
coming soon

Arch:
pacman -S git python python-pip python-virtualenv nodejs npm mariadb-server postgresql-libs

Fedora:
dnf install -y mysql-devel postgresql-devel xmlsec1-devel python3-devel libtool-ltdl-devel nodejs


Installation:

Clone Hiboo:
git clone https://forge.tedomum.net/acides/hiboo && cd hiboo

Create virtualenv and activate it:
mkdir venv && virtualenv venv && source venv/bin/activate

Install dependencies:
pip install -r requirements.txt

Import databases: flask db upgrade

Generate the static folder:
npm install; ./node_modules/.bin/webpack-cli

Run:
export FLASK_APP=hiboo; flask run