removed references to sqlite3

This commit is contained in:
Andreas Jönsson 2025-11-16 18:20:57 +01:00
parent dd0b5a6d5c
commit 69e27fc652

View File

@ -6,7 +6,7 @@ A starter template for Flask web applications with Docker support, user authenti
- User registration, login, and dashboard functionality - User registration, login, and dashboard functionality
- Docker and Docker Compose for containerized environments - Docker and Docker Compose for containerized environments
- SQLite database (with optional PostgreSQL support) - PostgreSQL database
- Environment configuration via .env file - Environment configuration via .env file
- Jinja2 templating with base HTML structure - Jinja2 templating with base HTML structure
- Git version control integration - Git version control integration
@ -54,7 +54,7 @@ Essential environment variables in `.env`:
```ini ```ini
FLASK_APP=app.py FLASK_APP=app.py
FLASK_ENV=production FLASK_ENV=production
DATABASE_URL=sqlite:///instance/app.db DATABASE_URL=postgresql://user:password@db:5432/appdb
SECRET_KEY=your-secret-key-here SECRET_KEY=your-secret-key-here
``` ```