A set of math utilities for solving the Cicada 3301 puzzle.
The project includes two shell scripts to help with environment setup and deployment using Podman:
Use this script to set up a clean PostgreSQL instance for local development.
- What it does: Cleans up existing containers/volumes, pulls the latest Postgres image, and starts a new container named
postgreswith the passwordquantixpw. - Port: Exposes PostgreSQL on
5432. - Usage:
chmod +x create-dev-db.sh ./create-dev-db.sh
Use this script to deploy the entire Quantix stack (App + DB) within a Podman pod.
- What it does: Creates a pod named
quantix-pod, pulls the Quantix and Postgres images, and starts both containers within the same network namespace. - Ports: Exposes the web application on
3301and the database on5432. - Usage:
chmod +x cont-only.sh ./cont-only.sh