forked from tdjsnelling/sqtracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'tdjsnelling:master' into master
- Loading branch information
Showing
20 changed files
with
450 additions
and
136 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 |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
client/.next | ||
data/ | ||
config.js | ||
config.example.js | ||
yarn.lock | ||
.DS_Store | ||
dist/ | ||
letsencrypt/ | ||
|
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,9 +1,9 @@ | ||
FROM node:16-alpine | ||
ENV NODE_ENV=development | ||
ENV NODE_ENV=production | ||
ENV SENTRY_DSN="https://[email protected]/4504645996576768" | ||
LABEL org.opencontainers.image.source=https://github.com/tdjsnelling/sqtracker | ||
WORKDIR /sqtracker/app | ||
COPY . . | ||
RUN yarn install | ||
EXPOSE 3001 | ||
CMD yarn start | ||
CMD yarn start |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
FROM node:16-alpine AS builder | ||
ARG SENTRY_AUTH_TOKEN | ||
ENV NODE_ENV=development | ||
ENV NODE_ENV=production | ||
ENV SENTRY_ORG=tdjsnelling | ||
ENV SENTRY_PROJECT=sqtracker-frontend | ||
ENV SENTRY_AUTH_TOKEN=${SENTRY_AUTH_TOKEN} | ||
|
@@ -11,7 +11,7 @@ RUN echo "{}" > /config.js | |
RUN ./node_modules/.bin/next build | ||
|
||
FROM node:16-alpine | ||
ENV NODE_ENV=development | ||
ENV NODE_ENV=production | ||
ENV SENTRY_DSN="https://[email protected]/4504646040616960" | ||
LABEL org.opencontainers.image.source=https://github.com/tdjsnelling/sqtracker | ||
WORKDIR /sqtracker/client | ||
|
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.