mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
## Backend Changes - Refactored and restructured backend code - Consolidated utility functions and updated directory structure - Improved Git clone functionality to merge local files - Enhanced Git status retrieval and diff parsing - Implemented file revert and delete functionality - Optimized Git status checks for better performance ## Frontend Enhancements - Added smooth animated background transition in navbar - Implemented comprehensive Git status display in SettingsManager - Created branch management modal with improved UI and functionality - Added loading indicators for Git operations - Integrated DiffViewer for side-by-side comparisons of changes - Implemented Toast notifications for better user feedback - Enhanced file management with conditional revert/delete options - Added ability to selectively pull incoming changes ## UI/UX Improvements - Improved branch management UI with tooltips and confirmation dialogs - Enhanced alert notifications using react-toastify - Added fun loading messages for Git status - Implemented CommitSection component for improved commit functionality ## Miscellaneous - Updated sanitization to be less aggressive - Initialized database folders on Flask startup - Added Docker volumes for data storage - Changed application name to Profilarr
23 lines
445 B
YAML
23 lines
445 B
YAML
version: '3.8'
|
|
services:
|
|
frontend:
|
|
build: ./frontend
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- VITE_API_URL=http://192.168.1.111:5000 # Replace with your host machine's IP
|
|
- CHOKIDAR_USEPOLLING=true
|
|
|
|
backend:
|
|
build: ./backend
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./backend:/app
|
|
- backend_data:/app/data
|
|
|
|
volumes:
|
|
backend_data: |