https://task-manager-ch.onrender.com
This is a simple Django-based web application for managing your tasks
Installation and startup instructions are saved in the Makefile
Install dependencies by running
make installCreate .env file and set variables
DATABASE_URL = 'postgresql://user:password@host:port/database_name'
DEBUG = False
SECRET_KEY = 'your_secret'
# DEVELOPMENT_MODE = True for use db.sqlite3 database, for example, to detect errors when DEBUG = TrueRun the build script
make buildLaunch the app
# gunicorn
make start