Merge pull request #205 from blockscout/new-envs
New envs
Showing
configs/app/config.ts
0 → 100644
configs/envs/.env.common
0 → 100644
configs/envs/.env.poa_core
0 → 100644
| ... | @@ -9,8 +9,11 @@ | ... | @@ -9,8 +9,11 @@ |
| }, | }, | ||
| "scripts": { | "scripts": { | ||
| "dev": "next dev", | "dev": "next dev", | ||
| "dev:poa_core": "./node_modules/.bin/dotenv -e ./configs/envs/.env.poa_core -e ./configs/envs/.env.common -e ./configs/envs/.env.secrets yarn dev", | |||
| "build": "next build", | "build": "next build", | ||
| "build:docker": "docker build --build-arg GIT_COMMIT_SHA=$(git rev-parse HEAD) -t blockscout ./", | |||
| "start": "next start", | "start": "next start", | ||
| "start:docker:poa_core": "docker run -p 3000:3000 --env-file ./configs/envs/.env.poa_core --env-file ./configs/envs/.env.common --env-file ./configs/envs/.env.secrets blockscout", | |||
| "lint:eslint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx", | "lint:eslint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx", | ||
| "prepare": "husky install", | "prepare": "husky install", | ||
| "format-svg": "./node_modules/.bin/svgo -r ./icons" | "format-svg": "./node_modules/.bin/svgo -r ./icons" | ||
| ... | @@ -46,6 +49,7 @@ | ... | @@ -46,6 +49,7 @@ |
| "@types/react": "18.0.9", | "@types/react": "18.0.9", | ||
| "@types/react-dom": "18.0.5", | "@types/react-dom": "18.0.5", | ||
| "@typescript-eslint/eslint-plugin": "^5.27.0", | "@typescript-eslint/eslint-plugin": "^5.27.0", | ||
| "dotenv-cli": "^6.0.0", | |||
| "eslint": "8.16.0", | "eslint": "8.16.0", | ||
| "eslint-config-next": "^12.3.0", | "eslint-config-next": "^12.3.0", | ||
| "eslint-plugin-es5": "^1.5.0", | "eslint-plugin-es5": "^1.5.0", | ||
| ... | ... |
Please register or sign in to comment