puls-dev 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
[Live Documentation](https://pulsdev.io/) | Discord: **pulsdev.io** ([Join](https://discord.gg/CjgRayuH))
|
|
6
6
|
|
|
7
|
+
> [!IMPORTANT]
|
|
8
|
+
> **Active Pre-1.0 Development**
|
|
9
|
+
> `pulsdev.io` is currently undergoing **active development**. While the framework features exhaustive 100% test coverage and strict production safety locks (such as dry-run planning and protected resource decorators), APIs and features are actively evolving.
|
|
10
|
+
> We are aggressively rolling out new resources and provider integrations. We welcome your feedback, bug reports, and contributions!
|
|
11
|
+
|
|
7
12
|
```typescript
|
|
8
13
|
@Deploy({ proxmox: CONFIG.STAGING })
|
|
9
14
|
class GameInfra extends Stack {
|
|
@@ -36,11 +41,14 @@ Running the same stack twice is always safe - existing resources are detected an
|
|
|
36
41
|
|
|
37
42
|
## Providers
|
|
38
43
|
|
|
39
|
-
| Provider | Resources |
|
|
40
|
-
|
|
41
|
-
| [
|
|
42
|
-
| [AWS](docs/providers/aws.md) | Route53, ACM (wildcard SSL), CloudFront, S3 |
|
|
43
|
-
| [
|
|
44
|
+
| Provider | Resources | Status |
|
|
45
|
+
|----------|-----------|--------|
|
|
46
|
+
| [Google Cloud Platform (GCP)](docs/providers/gcp.md) | Cloud Run, Cloud SQL, Secret Manager, Pub/Sub, Cloud DNS, IAM (Service Accounts & Bindings) | **Completed** |
|
|
47
|
+
| [AWS](docs/providers/aws.md) | Route53, ACM (wildcard SSL), CloudFront, S3 | **Completed** |
|
|
48
|
+
| [Firebase](docs/providers/firebase.md) | Hosting, Functions, Firestore (Indexes & Rules), Storage (Rules/CORS), Auth, Remote Config, App Check | **Completed** |
|
|
49
|
+
| [DigitalOcean](docs/providers/digitalocean.md) | Droplet, Domain, Firewall, Certificate, LoadBalancer | **Completed** |
|
|
50
|
+
| [Proxmox](docs/providers/proxmox.md) | VM (clone, cloud-init, provision, cluster-aware node selection, replace) | **Completed** |
|
|
51
|
+
|
|
44
52
|
|
|
45
53
|
---
|
|
46
54
|
|