expanded basic game features

This commit is contained in:
2026-04-27 08:45:44 -07:00
parent 0217d6636f
commit 5ff452ba2c
21 changed files with 5001 additions and 172 deletions

18
activate_with_env.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
# Helper script to activate venv and set MariaDB environment variables
# Activate virtual environment
source .venv/bin/activate
# Find and set MARIADB_CONFIG
MARIADB_CONFIG_PATH=$(find /opt/homebrew -name mariadb_config 2>/dev/null | head -1)
if [ -n "$MARIADB_CONFIG_PATH" ]; then
export MARIADB_CONFIG="$MARIADB_CONFIG_PATH"
echo "✓ MARIADB_CONFIG set to: $MARIADB_CONFIG_PATH"
else
echo "⚠ Warning: mariadb_config not found. Install with: brew install mariadb-connector-c"
fi
echo "Virtual environment activated and ready to use!"