Rafał Chłodnicki

Results 1204 comments of Rafał Chłodnicki

The first step would be separating the server into a separate repo. Or use monorepo. Whatever is a personal preference. Then: - optionally add `bin` property to `package.json` - add...

Personally I think working with monorepos is a pain. I think another option is to just put server code in a separate directory (like `server`) that would have its own...

I've kick-started the progress with https://github.com/stylelint/vscode-stylelint/pull/141

If `aws` command is working then I would suspect that it uses different credentials. Maybe check in `~/.aws/config` and/or `~/.aws/credentials` and see if there is a `default` profile defined and...

You can set environment variable per instance of dynamodb-admin like so: DYNAMO_ENDPOINT=http://localhost:8000 dynamodb-admin --port 8001 DYNAMO_ENDPOINT=http://localhost:8010 dynamodb-admin --port 8002 Of course those would have to be started in two different...

I would be OK with updating to version 3 of SDK if it retains full compatibility with existing databases and won't modify them in some way that would be incompatible...

Just FYI: have never used React (I'm a Vue guy) so this would feel a bit foreign for me.

Query params are used for filtering/searching already. I don't want to clutter the UI with another button that won't be that useful to most and also can be confusing. Since...

But I don't see any problem with storing that state in a browser. That will most likely be still a convenient solution for you because if you are mostly or...