Skip to content

Commit

Permalink
main dependencies + README update
Browse files Browse the repository at this point in the history
  • Loading branch information
Raidzin committed Oct 6, 2023
1 parent 2187469 commit e189c40
Show file tree
Hide file tree
Showing 3 changed files with 279 additions and 2 deletions.
36 changes: 34 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,34 @@
# adaptive_hockey_federation
Сайт Федереции Адаптивного Хоккея
# Федерация Адаптивного Хоккея

## Описание
Проект для [Федерации адаптивного хоккея](https://paraicehockey.ru/)
## Технологии
- [Python 3.11](https://www.python.org/downloads/release/python-3110/)
- [Poetry](https://python-poetry.org/)
- [Django](https://www.djangoproject.com/)
- [Nginx](https://nginx.org/)
- [Grafana](https://grafana.com/grafana/)

## Подготовка к запуску

##### Клонировать репозиторий

```shell
git clone https://github.com/Studio-Yandex-Practicum/adaptive_hockey_federation.git
```

##### Перейти в директорию

```shell
cd adaptive_hockey_federation
```

##### Установить зависимости

```shell
poetry install --with dev --with test
```

## Локальный запуск

### **TODO**
217 changes: 217 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[tool.poetry]
name = "adaptive-hockey-federation"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
packages = [{ include = "adaptive_hockey_federation" }]

[tool.poetry.dependencies]
python = "^3.11"
django = "^4.2.6"

[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"

[tool.poetry.group.test.dependencies]
flake8 = "^6.1.0"
flake8-isort = "^6.1.0"
mypy = "^1.5.1"


[tool.isort]
multi_line_output = 3
include_trailing_comma = true

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit e189c40

Please sign in to comment.