mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 03:56:16 +00:00
fix: specify the env file path
This commit is contained in:
parent
996e87daa7
commit
50f1d1853b
@ -5,7 +5,6 @@ networks:
|
||||
services:
|
||||
verdaccio:
|
||||
image: verdaccio/verdaccio
|
||||
container_name: "verdaccio"
|
||||
networks:
|
||||
- node-network
|
||||
environment:
|
||||
@ -41,13 +40,3 @@ services:
|
||||
POSTGRES_USER: ${DB_USER}
|
||||
POSTGRES_DB: ${DB_DATABASE}
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
app:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
command: [ "yarn", "start" ]
|
||||
ports:
|
||||
- "${APP_HTTP_PORT}:${APP_HTTP_PORT}"
|
||||
- "${HTTP_PORT}:${HTTP_PORT}"
|
||||
networks:
|
||||
- node-network
|
@ -15,7 +15,9 @@ const sync = global.sync || {
|
||||
|
||||
console.log('process.env.NOCOBASE_ENV', process.env.NOCOBASE_ENV);
|
||||
|
||||
dotenv.config();
|
||||
dotenv.config({
|
||||
path: path.resolve(__dirname, '../../../.env'),
|
||||
});
|
||||
|
||||
const api = Api.create({
|
||||
database: {
|
||||
|
@ -1,4 +1,12 @@
|
||||
import { defineConfig } from 'umi';
|
||||
import dotenv from 'dotenv';
|
||||
import path from 'path';
|
||||
|
||||
dotenv.config({
|
||||
path: path.resolve(__dirname, '../../.env'),
|
||||
});
|
||||
|
||||
console.log('process.env.API_PORT', process.env.API_PORT);
|
||||
|
||||
export default defineConfig({
|
||||
title: false,
|
||||
|
@ -24,6 +24,7 @@
|
||||
"@ant-design/pro-layout": "^5.0.12",
|
||||
"@formily/antd-components": "^1.3.6",
|
||||
"@lourenci/react-kanban": "^2.1.0",
|
||||
"@nocobase/client": "^0.4.0-alpha.0",
|
||||
"@types/react-big-calendar": "^0.24.8",
|
||||
"@umijs/preset-react": "1.x",
|
||||
"@umijs/test": "^3.2.23",
|
||||
|
Loading…
Reference in New Issue
Block a user