Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f1aa8eb
test
zhravan Sep 10, 2025
60d248b
test
zhravan Sep 10, 2025
c4e969f
test
zhravan Sep 10, 2025
ee0fbd4
Merge branch 'master' of github.com:raghavyuva/nixopus
zhravan Sep 15, 2025
a808280
Merge branch 'master' of github.com:raghavyuva/nixopus
zhravan Sep 19, 2025
aa1a1b2
Merge branch 'master' of github.com:raghavyuva/nixopus
zhravan Sep 26, 2025
30ba75b
Merge branch 'master' of github.com:raghavyuva/nixopus
zhravan Oct 10, 2025
15e4005
hotfix(view): AppInfo Env naming for client side config
zhravan Oct 10, 2025
c68f0fe
hotfix(api): add env for SuperTokens dep
zhravan Oct 10, 2025
7258826
hotfix(api): add supertoken port as config
zhravan Oct 10, 2025
56ea242
hotfix(api): add supertoken port as config
zhravan Oct 10, 2025
338d5d1
hotfix(api): add supertoken port as config
zhravan Oct 10, 2025
7bdb73a
hotfix(api): add supertoken port as config
zhravan Oct 10, 2025
d538655
ci(build): linter build for view
zhravan Oct 10, 2025
07cca71
hotfix(conf): add cli config
zhravan Oct 10, 2025
f536054
hotfix(conf): add cli config for supertkns
zhravan Oct 10, 2025
1f39c6d
hotfix(conf): add cli config for supertkns
zhravan Oct 10, 2025
2667b83
fix: supertoken integration config for setup
zhravan Oct 10, 2025
99dbb2c
fix: supertoken integration config for setup
zhravan Oct 10, 2025
429e081
Merge branch 'master' of github.com:raghavyuva/nixopus into fix-cli-c…
zhravan Oct 11, 2025
f4671e6
chore: add missing envs in production stage
zhravan Oct 11, 2025
bf93440
Merge branch 'master' of github.com:raghavyuva/nixopus into fix-cli-c…
zhravan Oct 11, 2025
1b8a4a5
fix: supertokens enabled via HTTP
zhravan Oct 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/app/commands/install/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def _update_environment_variables(self, env_values: dict) -> dict:
"SUPERTOKENS_API_KEY": "NixopusSuperTokensAPIKey",
"SUPERTOKENS_API_DOMAIN": f"{protocol}://{api_host}/api",
"SUPERTOKENS_WEBSITE_DOMAIN": f"{protocol}://{view_host}",
"SUPERTOKENS_CONNECTION_URI": f"{protocol}://{api_host}:{supertokens_api_port}",
"SUPERTOKENS_CONNECTION_URI": f"{protocol}://{api_host}:{supertokens_api_port}".replace("https", "http"),
}

for key, value in key_map.items():
Expand Down
2 changes: 1 addition & 1 deletion cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nixopus"
version = "0.1.8"
version = "0.1.9"
description = "A CLI for Nixopus"
authors = ["Nixopus <raghavyuva@gmail.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ services:
args:
- NEXT_PUBLIC_PORT=${NEXT_PUBLIC_PORT}
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
- NEXT_PUBLIC_WEBSITE_DOMAIN=${NEXT_PUBLIC_WEBSITE_DOMAIN}
- NEXT_PUBLIC_WEBSITE_DOMAIN=${NEXT_PUBLIC_WEBSITE_DOMAIN}
ports:
- "${NEXT_PUBLIC_PORT:-7443}:${NEXT_PUBLIC_PORT:-7443}"
restart: unless-stopped
Expand Down
Loading