Update LittleShop configuration and deployment files

- Modified CLAUDE.md documentation
- Updated Dockerfile configuration
- Updated Program.cs and production settings
- Added deployment scripts for Hostinger
- Added Hostinger environment configuration

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
SilverLabs DevTeam
2025-09-18 19:27:58 +01:00
parent a419bd7a78
commit 54618348ab
9 changed files with 290 additions and 23 deletions

View File

@@ -31,9 +31,11 @@ COPY --from=publish /app/publish .
# Create directories for uploads and data
RUN mkdir -p /app/wwwroot/uploads/products
RUN mkdir -p /app/data
RUN mkdir -p /app/logs
# Set permissions
RUN chmod -R 755 /app/wwwroot/uploads
RUN chmod -R 755 /app/data
RUN chmod -R 755 /app/logs
ENTRYPOINT ["dotnet", "LittleShop.dll"]