-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[NO-ISSUE] refactor/improvements #1
base: master
Are you sure you want to change the base?
Conversation
@@ -60,7 +60,7 @@ impl Application { | |||
|
|||
async fn configure_server(context: NettuContext) -> Result<(Server, u16), std::io::Error> { | |||
let port = context.config.port; | |||
let address = format!("0.0.0.0:{}", port); | |||
let address = format!("127.0.0.1:{}", port); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might need to change this again when deploying, but for the moment, let's listen only on localhost interface (as any other app)
I'll update the readme in a follow-up PR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM but what are all the .sqlx
files?
Changed
Makefile
toJustfile
sqlx
's offline mode files (docs)