10 lines
325 B
Bash
Executable File
10 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
cd /home/antigravity/scratch/makeanyplace-backend
|
|
source venv/bin/activate
|
|
export DB_HOST=postgres.local
|
|
export REDIS_HOST=127.0.0.1
|
|
# Run the aggregator
|
|
python3 event_aggregator.py
|
|
# Copy the updated events file to the local development site frontend
|
|
cp live_events.json ../makeanyplace-web/src/live_events.json
|