Add initial project structure with core functionality for book and stationery uploads

- Created main application entry point in `main.go`.
- Added configuration management in `config/config.go` and tests in `config/config_test.go`.
- Implemented handlers for book and stationery uploads in `handlers/book.go` and `handlers/stationery.go`, including validation logic.
- Established database connection and services in `services/database.go` and `services/book_service.go`.
- Defined models for books and stationery in `models/book.go` and `models/stationery.go`.
- Set up Firebase integration for image uploads in `services/firebase.go`.
- Created migration scripts for database schema in `migrations/001_create_tables.sql` and subsequent updates.
- Added CORS and error handling middleware.
- Included comprehensive tests for handlers, services, and utilities.
- Documented API endpoints and usage in `README.md` and migration instructions in `migrations/README.md`.
- Introduced `.gitignore` to exclude unnecessary files and directories.
- Added Go module support with `go.mod` and `go.sum` files.
- Implemented utility functions for slug generation and validation in `utils/slug.go` and `utils/validation.go`.
This commit is contained in:
ianshaloom
2025-11-21 08:50:27 +03:00
commit ebeae34e01
39 changed files with 4044 additions and 0 deletions

32
scripts/run_migration.sh Executable file
View File

@@ -0,0 +1,32 @@
#!/bin/bash
# Load environment variables from .env or .env.local
if [ -f .env ]; then
export $(grep -v '^#' .env | grep -v '^$' | xargs)
elif [ -f .env.local ]; then
export $(grep -v '^#' .env.local | grep -v '^$' | xargs)
else
echo "Error: No .env or .env.local file found"
exit 1
fi
# Check if required variables are set
if [ -z "$DB_HOST" ] || [ -z "$DB_PORT" ] || [ -z "$DB_USER" ] || [ -z "$DB_NAME" ]; then
echo "Error: Required database environment variables not set"
echo "Required: DB_HOST, DB_PORT, DB_USER, DB_NAME"
exit 1
fi
# Run migration
echo "Running database migration..."
echo "Connecting to: $DB_HOST:$DB_PORT/$DB_NAME as $DB_USER"
PGPASSWORD="$DB_PASSWORD" psql -h "$DB_HOST" -p "$DB_PORT" -U "$DB_USER" -d "$DB_NAME" -f migrations/001_create_tables.sql
if [ $? -eq 0 ]; then
echo "Migration completed successfully!"
else
echo "Migration failed!"
exit 1
fi