Fix registry login by passing FORGEJO_REGISTRY_USER and FORGEJO_REGISTRY_TOKEN via environment variables instead of direct secret interpolation. This is the reference implementation pattern used across all repos. This prevents credentials from being exposed in logs or shell history while keeping the standard docker login approach. After merge + org-level secrets configured: - All repos inherit FORGEJO_REGISTRY_USER and FORGEJO_REGISTRY_TOKEN - CI validates credentials exist before docker login - Image pushed to registry on main push --------- Co-authored-by: Story Crater Bot <[email protected]> Reviewed-on: #3
37 lines
876 B
JSON
37 lines
876 B
JSON
{
|
|
"name": "riotpiao",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint . --ext .ts,.tsx"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"framer-motion": "^11.0.0",
|
|
"lucide-react": "^1.41.0",
|
|
"next": "^15.5.20",
|
|
"react": "^19.2.7",
|
|
"react-dom": "^19.2.7",
|
|
"react-markdown": "^10.1.0",
|
|
"tailwindcss": "^3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/typography": "^0.5.20",
|
|
"@types/node": "20.17.6",
|
|
"@types/react": "19.2.17",
|
|
"@typescript-eslint/eslint-plugin": "^8.64.0",
|
|
"@typescript-eslint/parser": "^8.64.0",
|
|
"autoprefixer": "^10.4.16",
|
|
"eslint": "^9.0.0",
|
|
"eslint-config-next": "^16.2.10",
|
|
"postcss": "^8.4.32",
|
|
"typescript": "5.8.2"
|
|
}
|
|
}
|