Skip to content

Commit

Permalink
add env vars
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
Dudi Zimberknopf committed Feb 5, 2024
1 parent 402362e commit 2d16f93
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build

on:
push:
branches: ["main", "stagging"]
branches: ["main", "staging"]

pull_request:

Expand Down
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,15 @@ USER nextjs
EXPOSE 3000

ENV PORT 3000
# set hostname to localhost

ENV HOSTNAME "0.0.0.0"

ENV NEXTAUTH_URL "http://localhost:3000"

ENV NEXTAUTH_SECRET "secret"

ENV NEXT_PUBLIC_GOOGLE_ANALYTICS "UA-XXXXXXXXX-X"

# server.js is created by next build from the standalone output
# https://nextjs.org/docs/pages/api-reference/next-config-js/output
CMD ["node", "server.js"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FalkorDB-Browser is a vizualization UI for FalkorDB.
FalkorDB-Browser is a visualization UI for FalkorDB.

To see a running demo check: https://browser.falkordb.com/

Expand Down

0 comments on commit 2d16f93

Please sign in to comment.