/StatzyGUI

A simple HTML Statzy GUI

Primary LanguageHTMLMIT LicenseMIT

StatzyGUI

Wiki

Read the wiki here

Installation Guide

  1. Open a virtual environment
  2. Activate the virtual environment
  3. Install Flask with the following command:
    pip install -r requirements.txt
    
  4. Create the Statzy database in your local Postgres database:
    CREATE DATABASE statzy
    
  5. Import the Statzy tables and data into the Statzy database:
    • First, connect to the Statzy database:
      \c statzy
      
    • Then, import the tables and data:
      \i statzy.sql
      \i statzy.siko
      

Running the Flask Application for Development

  1. Run the statzy.py file with Python:
    python statzy/statzy.py
    
  2. Run the css watcher:
    npx tailwindcss -i statzy/static/css/theme.css -o statzy/static/build/theme.css --watch
    

Flask Tailwind CSS