Skip to content

Commit ed0d854

Browse files
tiurinjoe4devpeter-smith-phd
authored
chore: add AWS links and docs (#56)
Add AWS Toolkit to recommended extension The LocalStack Toolkit works well together with the AWS Toolkit, so we add it to the recommended VS Code Extensions prompt to the user upon installation. chore: add AWS Toolkit and remote debugging to README chore: update repository URL Co-authored-by: Joel Scheuner <[email protected]> Co-authored-by: Peter Smith <[email protected]>
1 parent 618dbbd commit ed0d854

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
## 1.0.2 (2025-09-02)
3232

33-
- fix: Improve LocalStack status tracker reporting [#7](https://github.com/localstack/localstack-vscode-extension/pull/7)
33+
- fix: LocalStack status tracker reporting affected by Lambda function invocation
3434

3535
## 1.0.1 (2025-09-01)
3636

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ The LocalStack Toolkit for VS Code enables you to install, configure, and run Lo
44

55
## Install and configure LocalStack
66

7-
The setup wizard ensures LocalStack is installed and configured for a seamless integration with AWS tools, like AWS CLI, SDKs, CDK.
7+
The setup wizard ensures LocalStack is installed and configured for a seamless integration with AWS tools, like the AWS Toolkit VS Code extension, AWS CLI, SDKs, and CDK.
88

99
LocalStack can be installed either locally for the current user or globally for all users.
1010

1111
You can start using LocalStack for free by signing up for a free account or signing into an existing one. The setup wizard facilitates this process and configures your authentication token required to start LocalStack.
1212

13-
The LocalStack Toolkit integrates seamlessly with AWS tools like the AWS CLI. It automatically configures a dedicated `localstack` AWS profile in your `.aws/config` and `.aws/credentials` files, if one is not already present.
13+
The LocalStack Toolkit integrates seamlessly with AWS tools like the AWS Toolkit VS Code extension, AWS CLI, SDKs, and CDK. It automatically configures a dedicated `localstack` AWS profile in your `.aws/config` and `.aws/credentials` files, if one is not already present.
1414

1515
![Run the LocalStack Setup Wizard](docs/images/localstack-toolkit-setup-wizard.gif)
1616

@@ -26,7 +26,8 @@ You can see LocalStack logs in the VS Code Output panel. Simply select LocalStac
2626

2727
## `localstack` AWS profile
2828

29-
Once the profile is configured you can use it from your favorite AWS tools like AWS CLI, SDKs, CDK to deploy to and interact with LocalStack.
29+
Once the profile is configured you can use it from your favorite AWS tools like the AWS Toolkit VS Code extension, AWS CLI, SDKs, and CDK to deploy to and interact with LocalStack.
30+
For example, the AWS Toolkit for VS Code includes compatibility with your `localstack` AWS profile and the integration enables Lambda Remote Debugging on LocalStack. Check [AWS Lambda with LocalStack support](https://docs.aws.amazon.com/toolkit-for-vscode/latest/userguide/lambda-localstack.html) and [LocalStack Lambda Remote Debugging](https://docs.localstack.cloud/aws/tooling/lambda-tools/remote-debugging/) for detailed information.
3031

3132
## Changelog
3233

@@ -40,7 +41,7 @@ Once the profile is configured you can use it from your favorite AWS tools like
4041

4142
### LocalStack Toolkit for VS Code extension support
4243

43-
Please provide feedback or report an issue on the LocalStack Toolkit for VS Code by using our [GitHub Issues](https://github.com/localstack/localstack-vscode-extension/issues) page.
44+
Please provide feedback or report an issue on the LocalStack Toolkit for VS Code by using our [GitHub Issues](https://github.com/localstack/localstack-toolkit-vscode/issues) page.
4445

4546
### LocalStack general support
4647

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@
2323
},
2424
"icon": "resources/icons/localstack-icon-256x256.png",
2525
"license": "Apache-2.0",
26-
"homepage": "https://github.com/localstack/localstack-vscode-extension#readme",
26+
"homepage": "https://github.com/localstack/localstack-toolkit-vscode#readme",
2727
"bugs": {
28-
"url": "https://github.com/localstack/localstack-vscode-extension/issues"
28+
"url": "https://github.com/localstack/localstack-toolkit-vscode/issues"
2929
},
3030
"repository": {
3131
"type": "git",
32-
"url": "https://github.com/localstack/localstack-vscode-extension.git"
32+
"url": "https://github.com/localstack/localstack-toolkit-vscode.git"
3333
},
34+
"recommendations": [
35+
"AmazonWebServices.aws-toolkit-vscode"
36+
],
3437
"activationEvents": [
3538
"onStartupFinished"
3639
],

0 commit comments

Comments
 (0)