-
-
Notifications
You must be signed in to change notification settings - Fork 6
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 #678 from nature-heart-software/dev
release
- Loading branch information
Showing
83 changed files
with
1,141 additions
and
277 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
npm-debug.log | ||
yarn-error.log |
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,2 @@ | ||
httpTimeout 600000 | ||
network-timeout 600000 |
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,33 @@ | ||
FROM mcr.microsoft.com/windows/servercore:ltsc2019 | ||
|
||
WORKDIR /app | ||
|
||
RUN icacls "C:\app" /grant:r everyone:(OI)(CI)F /t | ||
|
||
COPY ./scripts/install-nodejs.ps1 ./scripts/install-nodejs.ps1 | ||
RUN powershell -Command ./scripts/install-nodejs.ps1 | ||
|
||
COPY ./scripts/install-yarn.ps1 ./scripts/install-yarn.ps1 | ||
RUN powershell -Command ./scripts/install-yarn.ps1 | ||
|
||
COPY ./scripts/install-python.ps1 ./scripts/install-python.ps1 | ||
RUN powershell -Command ./scripts/install-python.ps1 | ||
|
||
COPY ./scripts/install-vs-build-tools.ps1 ./scripts/install-vs-build-tools.ps1 | ||
RUN powershell -Command ./scripts/install-vs-build-tools.ps1 | ||
|
||
ENV PATH="C:\nodejs;C:\Program Files (x86)\Yarn\bin;C:\Python310;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.30.30705\bin\Hostx64\x64;${PATH}" | ||
|
||
ENV PYTHON="C:\Python310\python.exe" | ||
|
||
ENV NODE_OPTIONS="--max-old-space-size=4096" | ||
|
||
RUN npm config set python C:\Python310\python.exe | ||
|
||
RUN npm config set msvs_version 2022 | ||
|
||
COPY ./ ./ | ||
|
||
COPY ./lerna.json.prod ./lerna.json | ||
|
||
RUN npm run build |
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
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
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.