mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
- Added PALMR_UID and PALMR_GID environment variables to all relevant Docker Compose files to ensure consistent user and group ID settings for container processes. - Updated documentation in quick-start guide to reflect these changes, enhancing clarity for users regarding UID/GID configurations.
924 B
924 B
🚀 Quick Start
Palmr. includes a convenient Makefile to simplify development and deployment tasks:
# Show all available commands
make help
# Build Docker image with multi-platform support
make build
# Start the application
make start
# View application logs
make logs
# Stop the application
make stop
# Clean up containers and images
make clean
# Update apps version
make update-version
Available Commands:
make build
- Build Docker image using the build script in./infra/
make start
- Start the application using docker-composemake stop
- Stop all running containersmake logs
- Show application logsmake clean
- Clean up containers and imagesmake shell
- Access the application container shellmake update-version
- Update all apps version in package.json
All infrastructure scripts are organized in the ./infra/
directory for better project organization.