- Add Dockerfile for multi-stage build process - Add .dockerignore to optimize Docker build context - Add docker-compose.yml for local development and deployment - Remove existing Makefile and replace with Docker-based workflow - Update .gitignore to exclude .env file - Update .env.example with consistent configuration - Remove sensitive .env file from version control - Prepare project for containerized development and deployment Streamlines project setup, improves development workflow, and enhances deployment flexibility with containerization.
38 lines
275 B
Plaintext
38 lines
275 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.github
|
|
|
|
# IDE
|
|
.vscode
|
|
.kiro
|
|
.idea
|
|
|
|
# Build artifacts
|
|
bin/
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test files
|
|
*_test.go
|
|
*.test
|
|
*.out
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Misc
|
|
.DS_Store
|
|
Thumbs.db
|
|
brainstorm.md
|
|
nginx/
|
|
scripts/
|
|
Makefile
|