https://github.com/antonbiluta/memes-backend
backend for an office application with memes
https://github.com/antonbiluta/memes-backend
for-office kotlin-spring memes-api
Last synced: 26 days ago
JSON representation
backend for an office application with memes
- Host: GitHub
- URL: https://github.com/antonbiluta/memes-backend
- Owner: antonbiluta
- License: mit
- Created: 2024-02-09T22:26:40.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-17T11:28:32.000Z (over 1 year ago)
- Last Synced: 2025-03-05T17:41:10.768Z (over 1 year ago)
- Topics: for-office, kotlin-spring, memes-api
- Language: Kotlin
- Homepage: https://mem.biluta.ru/api/swagger-ui/index.html
- Size: 140 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OfficeMemes Backend





## Project Structure
```mermaid
---
title: OfficeMemes Structure
---
graph TD
subgraph System["HomeLab"]
subgraph Container["Docker"]
frontend("Frontend\nReact")
backend{"Backend\nKotlin (Spring)"}
telegram_bot("Telegram Bot\nPython (Aiogram)")
storage[("Storage\nMinio S3")]
database[("Database\nPostgreSQL")]
frontend -->|API calls| backend
telegram_bot -->|API calls| backend
backend -->|Reads/Writes| storage
backend -->|Reads/Writes| database
end
end
%% Добавление пояснения "Вы здесь" для конкретного контейнера (например, для frontend)
note{{"this repo"}} -.-> backend
%% Стилизация
style frontend fill:#333,stroke:#fff,stroke-width:2px,color:#fff
style telegram_bot fill:#333,stroke:#fff,stroke-width:2px,color:#fff
style backend fill:#319273,stroke:#fff,stroke-width:2px,color:#fff
style storage fill:#333,stroke:#fff,stroke-width:2px,color:#fff
style database fill:#333,stroke:#fff,stroke-width:2px,color:#fff
style note fill:transparent,stroke:transparent
```