An open API service indexing awesome lists of open source software.

https://github.com/codbex/codbex-accounts-data

Accounts Management Data
https://github.com/codbex/codbex-accounts-data

Last synced: about 1 month ago
JSON representation

Accounts Management Data

Awesome Lists containing this project

README

          

# codbex-accounts-data

## 📖 Table of Contents
* [📦 Data](#-data)
* [🐳 Local Development with Docker](#-local-development-with-docker)

## 📦 Data

* [Accounts](https://github.com/codbex/codbex-accounts-data/tree/main/codbex-accounts-data/account)
* [Journal Entry Direction](https://github.com/codbex/codbex-accounts-data/tree/main/codbex-accounts-data/journalentry-direction)

## 🐳 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.