Added build deps
Some checks failed
armco-org/configs/pipeline/pr-main There was a failure building this commit
Some checks failed
armco-org/configs/pipeline/pr-main There was a failure building this commit
This commit is contained in:
17
README.md
Normal file
17
README.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# Armco Configs
|
||||
|
||||
This package provides common configuration files and constants for all Armco applications.
|
||||
|
||||
## Purpose
|
||||
- Centralizes API endpoints and web configuration objects.
|
||||
- Shares session token constants and other config values across projects.
|
||||
|
||||
## Files
|
||||
- `src/endpoints.ts`: Contains all API and web endpoints used by Armco apps, including environment-specific hosts and route definitions.
|
||||
- `src/constants.ts`: Defines session token names and other shared constants.
|
||||
|
||||
## Usage
|
||||
Import from this package in any Armco application to access shared endpoints and constants, ensuring consistency and reducing duplication.
|
||||
|
||||
---
|
||||
Maintained for internal use across the Armco monorepo.
|
||||
@@ -1,5 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# Get the directory of the current script
|
||||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
||||
|
||||
2918
package-lock.json
generated
2918
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
11
package.json
11
package.json
@@ -20,7 +20,7 @@
|
||||
"prettier": "prettier-config-nick",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ReStruct-Corporate-Advantage/configs.git"
|
||||
"url": "git+https://gitea.armco.dev/ReStruct-Corporate-Advantage/configs.git"
|
||||
},
|
||||
"keywords": [
|
||||
"components",
|
||||
@@ -33,13 +33,16 @@
|
||||
],
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ReStruct-Corporate-Advantage/configs/issues"
|
||||
"url": "https://gitea.armco.dev/ReStruct-Corporate-Advantage/configs/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ReStruct-Corporate-Advantage/configs#readme",
|
||||
"homepage": "https://gitea.armco.devReStruct-Corporate-Advantage/configs#readme",
|
||||
"devDependencies": {
|
||||
"@armco/types": "^0.0.20",
|
||||
"@types/node": "^24.10.0",
|
||||
"typescript": "^5.9.3"
|
||||
"glob": "^11.0.3",
|
||||
"typescript": "^5.9.3",
|
||||
"vite-plugin-dts": "^4.5.4",
|
||||
"vitest": "^4.0.8"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/uuid": "^10.0.0"
|
||||
|
||||
Reference in New Issue
Block a user