Skip to main content

GINI Teaching Center

Courses, lab codes, and proof-of-activity submissions. A small threaded HTTP server over SQLite, with no AI and no external services.

pip install gini-teaching-center
gini-teaching-center --data ./tc-data --port 8080

Two commands are installed: gini-teaching-center and the shorter gini-tc.

One dependency, gini-core — the shared domain model that carries the proof format, the ticket codes and the narration. It is pure Python (PyYAML its only dependency), so the whole install is a couple of MB and needs no Qt and no compiler. It is deliberately not gini-toolkit: that would pull PySide6 and a Chromium build onto a server to run a web application that never opens a window.


Installing on a server

Written for gini.cs.mcgill.ca, but nothing here is McGill-specific.

1. A service account and a home

The database holds staff password hashes and every student's submitted work, on a VM the whole school can log into. Give it its own user and keep the data directory private — this is the step worth not skipping.

sudo useradd --system --home /opt/gini-tc --shell /usr/sbin/nologin gini-tc
sudo mkdir -p /opt/gini-tc/{data,logs}
sudo chown -R gini-tc:gini-tc /opt/gini-tc
sudo chmod 700 /opt/gini-tc/data          # nobody else on the VM reads student work

2. A virtualenv

sudo -u gini-tc python3 -m venv /opt/gini-tc/venv
sudo -u gini-tc /opt/gini-tc/venv/bin/pip install --upgrade pip
sudo -u gini-tc /opt/gini-tc/venv/bin/pip install gini-teaching-center

3. The first admin

Start it once by hand. With no ADMIN_PASSWORD set, it prints a one-time claim token and waits — so the portal is never standing open on a port with no password, which is what "first password wins" would mean on a shared machine.

sudo -u gini-tc /opt/gini-tc/venv/bin/gini-teaching-center --data /opt/gini-tc/data --port 8080
GINI Teaching Center  ·  http://127.0.0.1:8080/

  FIRST RUN — claim the admin account:
    username     admin
    claim token  DcKSF9pURy143seE

Open the console, sign in with the username and that token, and choose a password. Then stop it (Ctrl-C) and hand it to a process manager.

4. Keep it running

pm2, since you asked — it works fine for a Python process:

pm2 start /opt/gini-tc/deploy/ecosystem.config.js
pm2 save && pm2 startup          # prints one sudo command; run it, and it survives reboots
pm2 logs gini-tc

Two settings in that file are load-bearing: instances: 1 and exec_mode: "fork". SQLite wants a single writer, and pm2's cluster mode would start several processes over one database file.

systemd is the alternative, and on a school-managed VM it is what I would pick: it starts at boot with no per-user pm2 startup, survives the account logging out, and the unit file carries sandboxing (ProtectSystem=strict, UMask=0077) that keeps the data directory out of reach even if a permission is set wrongly later. deploy/gini-tc.service is ready to copy.

Either way, restarts are a backstop rather than a routine event: an exception inside a request is caught and answered as a 500, so a bad request cannot take the process down.

5. Put TLS in front of it

The server binds 127.0.0.1 by default, on purpose. Staff sign in with a password, and this server speaks plain HTTP — on an open port that is a password crossing the campus network in clear text, readable by anyone else logged into the same VM. Terminate TLS in nginx:

server {
    listen 443 ssl;
    server_name gini.cs.mcgill.ca;
    ssl_certificate     /etc/ssl/certs/gini.crt;
    ssl_certificate_key /etc/ssl/private/gini.key;

    client_max_body_size 32m;          # submitted topologies and course handouts

    location / {
        proxy_pass http://127.0.0.1:8080;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}
server { listen 80; server_name gini.cs.mcgill.ca; return 301 https://$host$request_uri; }

Then point gBuilder at https://gini.cs.mcgill.ca in Settings.

If you cannot get a certificate quickly, keep the VPN restriction you planned and treat the window before TLS as a testing period rather than a term.


Upgrading

sudo -u gini-tc /opt/gini-tc/venv/bin/pip install --upgrade gini-teaching-center
pm2 restart gini-tc          # or: sudo systemctl restart gini-tc

The database migrates itself on open: missing columns are added, and retired NOT NULL columns are relaxed by rebuilding the table without dropping data. Downgrading is not supported — take a copy of data/gini.db first if you are trying a version out mid-term.

Backups

Everything is one SQLite file plus the uploaded materials:

sudo -u gini-tc sqlite3 /opt/gini-tc/data/gini.db ".backup '/opt/gini-tc/data/backup.db'"

.backup rather than cp, because the server is running and WAL mode means a plain copy can catch a torn moment. The Site Reset in the console also writes a full JSON snapshot to data/backups/ before it removes anything.

Configuration

Every flag falls back to an environment variable, so a unit file, a pm2 config and an old shell script all work.

Flag Env Default
--data COURSE_ROOT ./tc-data courses, submissions, backups
--port PORT 8080
--host HOST 127.0.0.1 bind address — leave it local, proxy in front
--admin ADMIN_ID admin the portal admin's username
ADMIN_PASSWORD (unset) authoritative on every boot when set; otherwise a claim token is printed

ADMIN_PASSWORD is read on every start, not just the first, so setting it later reconciles a forgotten password. Keep it out of any file that goes into git: put it in /opt/gini-tc/env (chmod 600), or use the claim token and never store a password at all.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gini_teaching_center-0.1.0.tar.gz (50.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gini_teaching_center-0.1.0-py3-none-any.whl (49.3 kB view details)

Uploaded Python 3

File details

Details for the file gini_teaching_center-0.1.0.tar.gz.

File metadata

  • Download URL: gini_teaching_center-0.1.0.tar.gz
  • Upload date:
  • Size: 50.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.7

File hashes

Hashes for gini_teaching_center-0.1.0.tar.gz
Algorithm Hash digest
SHA256 4ab01f124738cf0f2272ecc29ea7a42cdab7b9713f63afaec316dae5e32d0a71
MD5 c796f51b61df6f8d2360c577348bca3b
BLAKE2b-256 cd6307c4b00283b6a5f4cca6092c78c255d0ca4919687d15e1f0441371e9b7b8

See more details on using hashes here.

File details

Details for the file gini_teaching_center-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for gini_teaching_center-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3ded14fb5417e44034be5bd04c9235584552ff928d00c0319f791cf1271f59ef
MD5 a6db0fd52f5439fc129e91db9c942136
BLAKE2b-256 40e5532cb04bcc7654e3e2e470ffe8d236d2c8e230c5d7ea218d8b9d6f9a54d9

See more details on using hashes here.

Release history Release notifications | RSS feed

6.8.1

2 files

6.8.0

2 files

6.7.0

2 files

6.6.1

2 files

6.6.0

2 files

6.5.2

2 files

6.5.1

2 files

6.5.0

2 files

6.4.0

2 files

6.3.2

2 files

6.3.1

2 files

6.3.0

2 files

6.2.1

2 files

6.2.0

2 files

6.1.4

2 files

6.1.3

2 files

6.1.2

2 files

6.1.1

2 files

6.1.0

2 files

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page