Skip to content

Migrations #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
![StackUp Banner]([https://tinkerhub.frappe.cloud/files/stackup%20banner.jpeg])
# Project Name
Long Description about project. This project do that. This project is awesome...

# Task Management
A task management application is a software tool that assists users in organizing and managing their tasks. It can be used to create to-do lists, track project progress, and set deadlines. Task management applications are suitable for use by individuals, teams, and businesses of all sizes.
## Team members
1. Name [Embed personal github URL]
2. Name [Embed perosnal github URL]
1. Roshiba C [https://github.com/Roshibac]
2. Fasna Shareen K [https://github.com/Fasnashareen]
3. Umira Parvi KP [https://github.com/umiraparvikp]
## Team Id
Team id here
tech-connect
## Link to product walkthrough
[link to video]
## How it Works ?
Expand Down
11 changes: 11 additions & 0 deletions hello.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
asgiref==3.7.2
certifi==2023.7.22
distlib==0.3.7
Django==4.2.7
filelock==3.13.1
pipenv==2023.10.24
platformdirs==3.11.0
setuptools==68.2.2
sqlparse==0.4.4
tzdata==2023.3
virtualenv==20.24.6
Binary file added task_management/db.sqlite3
Binary file not shown.
22 changes: 22 additions & 0 deletions task_management/manage.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys


def main():
"""Run administrative tasks."""
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'task_management.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)


if __name__ == '__main__':
main()
Loading