Skip to content
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.

Commit

Permalink
example
Browse files Browse the repository at this point in the history
  • Loading branch information
skorfmann committed Nov 21, 2023
1 parent a307f65 commit 09b157f
Show file tree
Hide file tree
Showing 11 changed files with 4,689 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore

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

13 changes: 8 additions & 5 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ const project = new typescript.TypeScriptProject({
defaultReleaseBranch: 'main',
name: 'wing-cloud-platform',
projenrcTs: true,
peerDeps: ["@winglang/sdk"],
description: "Wing Cloud Platform for testing all the way to production",
packageName: "@winglang/wing-platform",
peerDeps: ['@winglang/sdk'],
description: 'Wing Cloud Platform for testing all the way to production',
packageName: '@winglang/wing-platform',
releaseToNpm: true,
authorOrganization: true,
authorName: "Wing",
authorUrl: "https://winglang.io",
authorName: 'Wing',
authorUrl: 'https://winglang.io',
gitignore: [
"**/target"
],
});
project.synth();
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Wing Cloud Platform

## Setup
> Nb: This is WIP and has unstable APIs. All of it might and likely will change without prior notice
## Usage

```
npm install @winglang/wing-cloud-platform
```

```
export WING_ENV=<test|dev|production>
wing compile -t tf-aws -t @winglang/wing-cloud-platform main.w
```

if `WING_ENV` is not present it'll will default to `dev`.

## Dev

```
yarn --version
Expand Down
Loading

0 comments on commit 09b157f

Please sign in to comment.