It is a task management system. Lite version of http://www.redmine.org. It allows you to set tasks, change their statuses, mark with custom labels and assign executors. Registration and authentication are required to work with the system.
git clone [email protected]:shortykevich/TaskManager.git && cd TaskManager
make installecho "SECRET_KEY=your_very_secrete_key" >> .env
# By default project use sqlite db. If you gonna use Postgres add:
echo "DATABASE_URL=postgres://YourUserName:YourPassword@YourHostname:5432/YourDatabaseName" >> .env
# Optional:
echo "DEBUG=True" >> .envpython manage.py createsuperuserecho "DJANGO_SUPERUSER_USERNAME=YourUsername" >> .env
echo "DJANGO_SUPERUSER_PASSWORD=YourPassword" >> .env
echo "DJANGO_SUPERUSER_EMAIL=YourEmail" >> .env# Command was created for seamless deploying to avoid error if superuser already exists
python manage.py createsuperuser_if_not_existspython manage.py runserver