16 lines
380 B
Bash
16 lines
380 B
Bash
#!/bin/bash
|
|
|
|
echo "Starting xianyu-auto-reply system..."
|
|
|
|
# Disable core dumps to prevent core files generation
|
|
ulimit -c 0
|
|
|
|
# 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
|