- Flask web application for querying Oliver metafile server - Replicates Make.com workflow for job data retrieval - Two-stage process: XML client extraction → JSON data retrieval - Clean HTML interface with responsive design - Comprehensive error handling and SSL fixes - Complete documentation and installation guides 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
No EOL
523 B
Bash
Executable file
19 lines
No EOL
523 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Meta File Server Query - Start Script
|
|
echo "Starting Meta File Server Query Application..."
|
|
|
|
# Check if virtual environment exists
|
|
if [ ! -d "meta-server-venv" ]; then
|
|
echo "Creating virtual environment..."
|
|
python3 -m venv meta-server-venv
|
|
echo "Installing dependencies..."
|
|
source meta-server-venv/bin/activate
|
|
pip install -r requirements.txt
|
|
else
|
|
echo "Activating virtual environment..."
|
|
source meta-server-venv/bin/activate
|
|
fi
|
|
|
|
echo "Starting Flask application..."
|
|
python run.py |