The first self-written simple program for organizing notes, in python 3.11 and django 4.2.
The goal of the project is to use and consolidate my knowledge of django and python in practice
Profile photo:
Task list:
Task detail:
Today tasks:
# Clonning the repo
git clone [email protected]:AgvanGrigoryan/todo_server.git
cd todo_server
# Environment creation & activation
python -m venv venv && source venv/bin/activate
# Installing requirements
pip install -r now_or_never/requirements.txt
# Applying Migrations
python now_or_never/manage.py makemigrations && python now_or_never/manage.py migrate
# Generating secret token
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
echo 'DJANGO_SECRET_KEY="__PREVIOUS_COMMAND_GENERATED_OUTPUT__"' > now_or_never/.env
# Creating superuser
python manage.py createsuperuser
# Run the server
python manage.py runserver
Login as admin login, password and ENJOY :)

