Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
12fda93
Подготовить проект и создать базу данных для Item и User
AndreyMMGH Jun 29, 2025
2e8d13c
Настройка JPA для User и Item
AndreyMMGH Jun 30, 2025
0769d65
Создать базу данных для сущностей
AndreyMMGH Jun 30, 2025
7c1cb14
Реализовать функцию бронирования
AndreyMMGH Jul 2, 2025
9a23744
Добавить даты бронирования при просмотре вещей
AndreyMMGH Jul 2, 2025
6a36ff7
Добавить отзывы
AndreyMMGH Jul 3, 2025
f083944
удалить shareIt.mv.db и shareIt.trace.db
AndreyMMGH Jul 3, 2025
3be3f46
Изменить application.properties
AndreyMMGH Jul 3, 2025
3c429cc
Изменить application.properties2
AndreyMMGH Jul 3, 2025
176c408
Изменить application.properties3
AndreyMMGH Jul 3, 2025
6d6e3e8
Изменить application.properties и pom
AndreyMMGH Jul 4, 2025
c143838
Изменить application.properties4
AndreyMMGH Jul 4, 2025
ae63c6f
Изменить application.properties и pom2
AndreyMMGH Jul 4, 2025
f9a45d3
Изменить application.properties6
AndreyMMGH Jul 4, 2025
5185ccc
Изменить application.yaml
AndreyMMGH Jul 4, 2025
0b006e5
Изменить pommm
AndreyMMGH Jul 4, 2025
ea2da9f
Добавить yaml
AndreyMMGH Jul 4, 2025
3bee6f4
Добавить
AndreyMMGH Jul 4, 2025
4020feb
Добавить схему
AndreyMMGH Jul 4, 2025
723ba7f
Добавить схему2
AndreyMMGH Jul 4, 2025
aaaba3c
Убрать тестовый класс
AndreyMMGH Jul 4, 2025
318bd75
переработать
AndreyMMGH Jul 4, 2025
c226af5
переработать в postgres
AndreyMMGH Jul 4, 2025
bc35e1f
Попробовать уйти от "n+1" запросов
AndreyMMGH Jul 4, 2025
b222cce
Исправить замечания
AndreyMMGH Jul 5, 2025
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,8 @@ build/

### VS Code ###
.vscode/

shareIt.mv.db
shareIt.trace.db
db/shareIt.mv.db
db/*.db
17 changes: 17 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
services:
db:
image: postgres:16.1
container_name: postgres5
ports:
- "5438:5432"
volumes:
- ./volumes/postgres:/var/lib/postgresql/data/
environment:
- POSTGRES_DB=shareitdb
- POSTGRES_USER=dbuser
- POSTGRES_PASSWORD=12345
healthcheck:
test: pg_isready -q -d $$POSTGRES_DB -U $$POSTGRES_USER
timeout: 5s
interval: 5s
retries: 10
Loading