email_setup_instructions
# Install required packages sudo apt update sudo apt install python3-pip python3-venv nginx gunicorn
# Create project directory mkdir ~/email_form cd email_form
# Set up virtual environment python3 -m venv venv source venv/bin/activate pip install flask requests gunicorn
# Setup commands sudo cp ~/Sync/email_form.service /etc/systemd/system/ sudo cp ~/Sync/nginx/staging.conf /etc/nginx/sites-available # test sudo systemctl start email_form sudo systemctl enable email_form sudo systemctl restart nginx