Quam Facere - Logiciel Gestion Procédures IT Open Source


qf/
├── __init__.py          # Package initialization and app factory
├── main.py              # Core web interface and route handlers
├── auth.py              # Authentication and user management
├── db_models.py         # SQLAlchemy database models
├── languages.py         # Internationalization support
└── exporters.py         # Document generation and export functionality
                    
Admin
Team Leader
Editor
User
git clone git.code.sf.net/p/quam-facere/code
cd code
# Unix/macOS
python3 -m venv venv
source venv/bin/activate

# Windows
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt

# For development run
flask run

# For Gunicorn wsgi run
gunicorn -w 4 -b '0.0.0.0:5000' qf:app
deactivate
sudo docker load -i qf-v0.1.3.tar.gz
sudo docker run -p 443:5000 -v CONFIG_PATH:/etc/quam_facere -v INSTANCE_PATH:instance qf