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.
37 lines
924 B
Markdown
37 lines
924 B
Markdown
## 🚀 Quick Start
|
|
|
|
Palmr. includes a convenient Makefile to simplify development and deployment tasks:
|
|
|
|
```bash
|
|
# 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-compose
|
|
- `make stop` - Stop all running containers
|
|
- `make logs` - Show application logs
|
|
- `make clean` - Clean up containers and images
|
|
- `make shell` - Access the application container shell
|
|
- `make update-version` - Update all apps version in package.json
|
|
|
|
All infrastructure scripts are organized in the `./infra/` directory for better project organization. |