Skip to content

Commit

Permalink
fix: fixing hosts for servers
Browse files Browse the repository at this point in the history
  • Loading branch information
brayn003 committed Mar 14, 2024
1 parent 6e266f1 commit bb3ef5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start": "next start -H 0.0.0.0 -p 3000",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.mjs,.cjs ."
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ poethepoet = "^0.25.0"

[tool.poe.tasks]
dev = "uvicorn app.main:app --use-colors --reload --reload-exclude 'app_scripts/*'"
start = "uvicorn app.main:app"
start = "uvicorn app.main:app --host 0.0.0.0 --port 8000"
lint = [
{ cmd = "ruff check ." },
{ cmd = "pylint --rcfile=.pylintrc '**/*.py'" },
Expand Down

0 comments on commit bb3ef5f

Please sign in to comment.