Skip to content

Commit a5f6d14

Browse files
committed
readme added
1 parent 552186d commit a5f6d14

File tree

12 files changed

+54
-9
lines changed

12 files changed

+54
-9
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
### Hexlet tests and linter status:
2-
[![Actions Status](https://github.com/olyapka84/python-project-52/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/olyapka84/python-project-52/actions)
2+
[![Actions Status](https://github.com/olyapka84/python-project-52/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/olyapka84/python-project-52/actions)
3+
4+
# Task Manager (Hexlet Project 52)
5+
6+
Финальный проект курса Python на Хекслете — менеджер задач на Django.
7+
8+
## Деплой
9+
10+
Приложение доступно по адресу: [https://python-project-52-76f1.onrender.com/](https://python-project-52-76f1.onrender.com/)

accounts/admin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
from django.contrib import admin
21

32
# Register your models here.

accounts/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
from django.db import models
21

32
# Create your models here.

accounts/tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
from django.test import TestCase
21

32
# Create your tests here.

accounts/views.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
from django.shortcuts import render
21

32
# Create your views here.

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,8 @@ dependencies = [
1111
"gunicorn",
1212
"whitenoise",
1313
]
14+
15+
[dependency-groups]
16+
dev = [
17+
"ruff>=0.13.3",
18+
]

ruff.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
line-length = 88
2+
exclude = [
3+
"migrations",
4+
"task_manager/settings.py",
5+
".venv",
6+
]

tasks/admin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
from django.contrib import admin
21

32
# Register your models here.

tasks/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
from django.db import models
21

32
# Create your models here.

tasks/tests.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
from django.test import TestCase
21

32
# Create your tests here.

0 commit comments

Comments
 (0)