Task Manager is a task management system similar to http://www.redmine.org /. It allows you to set tasks, assign performers and change their statuses.
Clone the repository git clone [email protected]:Pest12/python-project-52.git
Go to the project directory and install dependencies using Poetry:
cd python-project-52 && make install
To run the site locally on the development server, you need to:
- Create a file
.envbased on.env.samplecp .env.sample .env - Fill
DATABASE_URLandSECRET_KEYDEBUG=Truein .env - Run
make makemigrations && make migrate
To start the server in a production environment using Gunicorn, run the command:
make start
Run the server locally in development mode with the debugger active:
make run-server