Deployment
Deploy your Enferno application to production
Overview
Enferno provides multiple deployment options to suit different needs. You can either use the automated Enferno CLI tool for quick Ubuntu server deployments, or follow the traditional deployment process for other environments.
Automated Deployment (Recommended)
The Enferno CLI tool automates the entire deployment process on Ubuntu servers with a single command.
Features
- Automated server provisioning with Python 3.13+ support
- Nginx configuration with SSL certificates
- PostgreSQL/SQLite database setup
- Systemd services configuration
- User management and security setup
Quick Start
- Install the CLI tool:
- Run the interactive setup:
The tool will guide you through the configuration process, prompting for necessary information like server hostname, credentials, and deployment options.
Traditional Deployment
If you prefer manual deployment or need to deploy to a different environment, follow these steps:
Prerequisites
- Python 3.11+
- PostgreSQL or SQLite
- Redis
- Nginx
- Systemd (for service management)
- uv (fast Python package installer)
Server Setup
- Update system packages:
- Install dependencies:
- Install uv:
- Install PostgreSQL (optional):
Application Setup
- Clone and setup:
- Initialize database:
Database Configuration
Enferno supports both SQLite (default) and PostgreSQL databases. Choose one of the following options:
SQLite (Default)
No additional configuration needed. The database will be created automatically when you run:
PostgreSQL
- Create database and user:
- Update
.env
configuration:
- Initialize database:
Nginx Configuration
Create a new Nginx configuration:
SSL Configuration
- Install Certbot:
- Obtain SSL certificate:
Systemd Service
Create a service file /etc/systemd/system/enferno.service
:
Enable and start the service:
Celery Worker Service
Create /etc/systemd/system/enferno-celery.service
:
Enable and start the worker:
Production Checklist
- Set
FLASK_DEBUG=0
in.env
- Use a secure
SECRET_KEY
- Configure proper logging
- Set up monitoring (e.g., Sentry)
- Configure backup strategy
- Set up firewall rules
- Enable rate limiting
- Configure CORS settings
- Set secure cookie flags
- Enable HTTPS redirection
Troubleshooting
Common Issues
-
Static files not found (404)
- Check Nginx static file path configuration
- Verify file permissions
- Run
flask static
to collect static files
-
Database connection errors
- Verify database credentials in
.env
- Check database service status
- Ensure proper permissions
- Verify database credentials in
-
Application not starting
- Check systemd service logs:
sudo journalctl -u enferno
- Verify environment variables
- Check application logs
- Check systemd service logs:
-
Redis connection issues
- Verify Redis is running:
sudo systemctl status redis
- Check Redis connection settings
- Ensure proper permissions
- Verify Redis is running:
For more deployment options and troubleshooting, visit the Enferno CLI documentation.