https://github.com/codbex/codbex-invoices-processes
Processes for Invoices module
https://github.com/codbex/codbex-invoices-processes
module process
Last synced: about 1 month ago
JSON representation
Processes for Invoices module
- Host: GitHub
- URL: https://github.com/codbex/codbex-invoices-processes
- Owner: codbex
- License: epl-2.0
- Created: 2025-07-30T09:37:30.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2026-04-23T09:02:55.000Z (3 months ago)
- Last Synced: 2026-04-23T11:06:09.279Z (3 months ago)
- Topics: module, process
- Homepage: https://codbex.com
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#
codbex-invoices-processes
## 📖 Table of Contents
* [🐳 Local Development with Docker](#-local-development-with-docker)
## 🐳 Local Development with Docker
When running this project inside the codbex Atlas Docker image, you must provide authentication for installing dependencies from GitHub Packages.
1. Create a GitHub Personal Access Token (PAT) with `read:packages` scope.
2. Pass `NPM_TOKEN` to the Docker container:
```
docker run \
-e NPM_TOKEN= \
--rm -p 80:80 \
ghcr.io/codbex/codbex-atlas:latest
```
⚠️ **Notes**
- The `NPM_TOKEN` must be available at container runtime.
- This is required even for public packages hosted on GitHub Packages.
- Never bake the token into the Docker image or commit it to source control.