mirror of
https://github.com/zhinianboke/xianyu-auto-reply.git
synced 2025-08-29 09:07:36 +08:00
13 lines
313 B
Bash
13 lines
313 B
Bash
#!/bin/bash
|
|
|
|
echo "Starting xianyu-auto-reply system..."
|
|
|
|
# Create necessary directories
|
|
mkdir -p /app/data /app/logs /app/backups /app/static/uploads/images
|
|
|
|
# Set permissions
|
|
chmod 777 /app/data /app/logs /app/backups /app/static/uploads /app/static/uploads/images
|
|
|
|
# Start the application
|
|
exec python Start.py
|