Skip to content
Snippets Groups Projects
Forked from ACIDES / Hiboo
566 commits behind the upstream repository.
user avatar
Jae Beojkkoch authored
69a26030
History

Hiboo

Quickstart dev guide:

Dependencies:
Debian:
apt install git python python-virtualenv python-pip node npm mariadb-server postgresql-devel

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

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