-
Notifications
You must be signed in to change notification settings - Fork 5
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
UI and files hierarchy changes #4
Conversation
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.
Looks great @Pive01 🚀 - added a few minor comment, but nothing that should block the merge.
Merging this now, so we can get a first version out soon together with @HarshCasper . Looking forward to seeing this in action! 🎉
/cc @lukqw
}; | ||
|
||
const stop = async () => { | ||
ddClient.docker.cli.exec('run', STOP_ARGS).then(() => mutate()); |
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.
nit: if we use async
functions, we could use await
here, rather than Thenable chaining.
|
||
|
||
return ( | ||
<> |
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.
nit: <>
wrapper probably not required here.. (as it contains only a single <Card ..>
element)
@@ -11,6 +11,8 @@ const COMMON_ARGS = [ | |||
export const START_ARGS = [ | |||
'-e', | |||
'LOCALSTACK_VOLUME_DIR=/tmp', | |||
'-e', |
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.
We should probably make this additional EXTRA_CORS_ALLOWED_ORIGINS
setting part of a dev config. Not critical for now - can look into that in a future iteration. 👍
Screenshots
Content
TODO