Skip to content

Commit

Permalink
Merge pull request #36 from deploystackio/fix/domain
Browse files Browse the repository at this point in the history
fix(domain): change domain to deploystack.io
  • Loading branch information
Lasim authored Oct 31, 2024
2 parents 528104b + 1da6921 commit 639f985
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ A Node.js module to translate Docker Compose files into AWS CloudFormation and m
First, install the module and its dependencies:

```sh
npm i @deploymy/docker-to-iac
npm i @deploystack/docker-to-iac
```

## Usage

### Translating Docker Compose to AWS CloudFormation

```typescript
import { translate } from '@deploymy/docker-to-iac';
import { translate } from '@deploystack/docker-to-iac';
import { readFileSync, writeFileSync } from 'fs';

// Read Docker Compose file content as plain text
Expand All @@ -30,7 +30,7 @@ writeFileSync('output-aws.json', JSON.stringify(translatedConfig, null, 2));

## Documentation

Please visit [docs.deploy.my](https://docs.deploy.my/docker-to-iac) to read full documentation.
Please visit [docs.deploystack.io](https://docs.deploystack.io/docker-to-iac) to read full documentation.

## License

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@deploymy/docker-to-iac",
"name": "@deploystack/docker-to-iac",
"version": "0.0.0-development",
"main": "dist/src/index.js",
"scripts": {
Expand All @@ -10,8 +10,8 @@
},
"author": {
"name": "Piotr Hajdas",
"email": "hello@deploy.my",
"url": "https://deploy.my"
"email": "hello@deploystack.io",
"url": "https://deploystack.io"
},
"files": [
"dist",
Expand All @@ -21,9 +21,9 @@
"access": "public"
},
"bugs": {
"url": "https://github.com/deploymy/docker-to-iac/issues"
"url": "https://github.com/deploystackio/docker-to-iac/issues"
},
"homepage": "https://github.com/deploymy/docker-to-iac#readme",
"homepage": "https://github.com/deploystackio/docker-to-iac#readme",
"keywords": [
"Apache-2.0",
"Infrastructure as Code",
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/aws-cloudformation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class CloudFormationParser extends BaseParser {
parameters['SubnetB'] = { Type: 'AWS::EC2::Subnet::Id' };
parameters['ServiceName'] = {
Type: 'String',
Default: 'DeployMyService'
Default: 'DeployStackService'
};
resources['Cluster'] = {
Type: 'AWS::ECS::Cluster',
Expand Down

0 comments on commit 639f985

Please sign in to comment.