Commit graph

6 commits

Author SHA1 Message Date
90cfeec59b Fix entrypoint.sh permissions in Docker container
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run
- Reorder Dockerfile to create phoenix user before copying entrypoint.sh
- Use --chown flag to set proper ownership of entrypoint.sh
- Resolves "Permission denied" error when starting container

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 22:27:17 -05:00
9b55c6e446 Fix Docker OpenSSL compatibility and deprecation warnings
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run
- Add OpenSSL 3.x libraries to runtime stage (libcrypto3, libssl3, openssl-dev)
- Fix deprecation warning by adding parentheses to function calls in release.ex
- Resolves crypto library loading errors in Docker container

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 22:15:45 -05:00
5feb386963 Fix Dockerfile build order for phoenix-colocated
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run
The phoenix-colocated JS files are generated during Elixir compilation.
Reordered steps to:
1. Compile Elixir code (generates phoenix-colocated files)
2. Copy assets
3. Deploy assets (esbuild can now find phoenix-colocated imports)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 22:03:00 -05:00
5da1762266 Remove npm from Dockerfile - Phoenix uses esbuild/tailwind
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run
Modern Phoenix apps don't use npm. They use standalone esbuild and
tailwind binaries. Removed npm installation and npm ci/deploy commands.
The mix assets.deploy task handles all asset compilation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 22:00:00 -05:00
da6739f7cc Fix Dockerfile: Use stable Elixir 1.17 Alpine image
Some checks are pending
Build and Push Docker Image / build-and-push (push) Waiting to run
The release candidate version 1.19.0-rc.0-otp-28-alpine is not available
on Docker Hub. Switched to stable elixir:1.17-alpine which is compatible
with the application.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 21:56:11 -05:00
9ece312442 Initial commit: RateMyClient™ Phoenix application
Features:
- User registration and authentication with email/password
- Admin login with username-based authentication (separate from regular users)
- Review system for contractors to rate clients
- Star rating system with review forms
- Client identification with private data protection
- Contractor registration with document verification
- Admin dashboard for review management
- Contact form (demo, non-functional)
- Responsive navigation with DaisyUI components
- Docker Compose setup for production deployment
- PostgreSQL database with Ecto migrations
- High Vis color scheme (dark background with safety orange/green)

Admin credentials: username: admin, password: admin123

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 21:30:50 -05:00