-
Notifications
You must be signed in to change notification settings - Fork 249
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 #478 from bitholla/2.0
2.0
- Loading branch information
Showing
1,105 changed files
with
91,850 additions
and
52,308 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
Initialized by using hollaex-cli v1.6.0 | ||
ENVIRONMENT_HOLLAEX_KIT_NETWORK=mainnet |
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 |
---|---|---|
@@ -1,16 +1,22 @@ | ||
FROM bitholla/hollaex-core:1.23.1 | ||
FROM node:10.15.3-stretch-slim | ||
|
||
COPY ./mail /app/mail | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends git python build-essential && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
npm install [email protected] [email protected] mocha -g --loglevel=error | ||
|
||
COPY ./plugins /app/plugins | ||
ENV NODE_ENV=production | ||
|
||
COPY ./db/migrations /app/db/migrations | ||
COPY ./server /app | ||
|
||
COPY ./db/seeders /app/db/seeders | ||
WORKDIR /app | ||
|
||
COPY ./db/models /app/db/models | ||
|
||
RUN npm install -g nodemon --loglevel=error && \ | ||
cd plugins && npm install --loglevel=error && \ | ||
for d in ./*/ ; do (cd "$d" && npm install --loglevel=error); done && \ | ||
RUN npm install --loglevel=error && \ | ||
pm2 update && \ | ||
cd /app/mail && npm install --loglevel=error | ||
|
||
EXPOSE 10010 | ||
|
||
EXPOSE 10080 | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.