Metadata-Version: 2.1
Name: cdk-valheim
Version: 0.0.11
Summary: cdk-valheim
Home-page: https://github.com/gotodeploy/cdk-valheim.git
Author: gotodeploy<1491134+gotodeploy@users.noreply.github.com>
License: Apache-2.0
Project-URL: Source, https://github.com/gotodeploy/cdk-valheim.git
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Typing :: Typed
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: aws-cdk.aws-applicationautoscaling (<2.0.0,>=1.90.1)
Requires-Dist: aws-cdk.aws-backup (<2.0.0,>=1.90.1)
Requires-Dist: aws-cdk.aws-ec2 (<2.0.0,>=1.90.1)
Requires-Dist: aws-cdk.aws-ecs (<2.0.0,>=1.90.1)
Requires-Dist: aws-cdk.aws-efs (<2.0.0,>=1.90.1)
Requires-Dist: aws-cdk.aws-events (<2.0.0,>=1.90.1)
Requires-Dist: aws-cdk.aws-logs (<2.0.0,>=1.90.1)
Requires-Dist: aws-cdk.core (<2.0.0,>=1.90.1)
Requires-Dist: constructs (<4.0.0,>=3.2.27)
Requires-Dist: jsii (<2.0.0,>=1.21.0)
Requires-Dist: publication (>=0.0.3)

# cdk-valheim

A high level CDK construct of [Valheim](https://www.valheimgame.com/) dedicated server.

## API

See [API.md](API.md)

## Example

```python
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
ValheimWorld(stack, "ValheimWorld",
    cpu=2048,
    memory_limit_mi_b=4096,
    schedules=[{
        "start_at": {"hour": "12", "week_day": "0-3"},
        "stop_at": {"hour": "1", "week_day": "0-3"}
    }],
    environment={
        "SERVER_NAME": "CDK Valheim",
        "WORLD_NAME": "Amazon",
        "SERVER_PASS": "fargate",
        "BACKUPS": "false"
    }
)
```

## Testing

* Snapshot

```sh
npx projen test
```

* Integration

```sh
npx cdk -a "npx ts-node src/integ.valheim.ts" diff
npx cdk -a "npx ts-node src/integ.valheim.ts" deploy
```


