-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from 15100399015/dev
Optimize the build process and Manage environment variables using.env
- Loading branch information
Showing
14 changed files
with
615 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,6 +20,7 @@ node_modules*/* | |
dist/* | ||
public | ||
scripts | ||
config | ||
docker | ||
coverage | ||
src/components/Chat/index.tsx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,6 @@ | |
|
||
# production | ||
/dist | ||
|
||
.env.* | ||
# misc | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
If you want to run or build this web project | ||
|
||
ensure that the nodejs environment is installed | ||
|
||
then run `code ./solidui-web` and `yarn install` or `npm install`, | ||
|
||
then create `.evn.dev` and `.env.prod` file in the `solidui-web`folder | ||
|
||
The basic contents are as follows | ||
|
||
```shell | ||
# .env.prod | ||
NODE_ENV=production | ||
|
||
BASE_ENV="" | ||
``` | ||
|
||
```shell | ||
# .env.dev | ||
NODE_ENV=development | ||
|
||
BASE_ENV="" | ||
# proxy address, | ||
# If solidui server is running locally: http://localhost:12345 | ||
PROXY_SERVER=http://*********:*** | ||
# local serve port | ||
SERVER_PORT=3000 | ||
|
||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
const productionVariable = [ | ||
{ name: "NODE_ENV", default: "production" }, | ||
{ name: "BASE_ENV", default: "" }, | ||
] | ||
const developmentVariable = [ | ||
{ name: "NODE_ENV", default: "development" }, | ||
{ name: "BASE_ENV", default: "" }, | ||
{ name: "PROXY_SERVER", default: "http://localhost:12345" }, | ||
{ name: "SERVER_PORT", default: 3000 }, | ||
] | ||
|
||
module.exports = { | ||
"production": productionVariable, | ||
"development": developmentVariable, | ||
filter(isDev = true, originEnvObj = {}) { | ||
const newObj = {} | ||
const dev = developmentVariable.map((v) => v.name) | ||
const prod = productionVariable.map((v) => v.name) | ||
Object.entries(originEnvObj).forEach(([key, value]) => { | ||
if (typeof value !== "string" && typeof value !== "number") return | ||
if ((isDev && dev.includes(key)) || (!isDev && prod.includes(key))) { | ||
newObj[key] = value; | ||
} | ||
}) | ||
return newObj | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
const path = require('path'); | ||
|
||
const contextDir = path.join(__dirname, '../') | ||
|
||
module.exports = { | ||
// app directory | ||
appDir: contextDir, | ||
// source directory | ||
appSrcDir: path.join(contextDir, "src"), | ||
// output directory | ||
outputDir: path.join(contextDir, 'dist'), | ||
// staticAssetsDir directory | ||
staticAssetsDir: path.join(contextDir, 'public'), | ||
// html file | ||
appHtml: path.join(contextDir, "public/index.html"), | ||
// entry js file | ||
appMainJs: path.join(contextDir, "src/index.tsx"), | ||
|
||
contextDir, | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.