sst 3.18.3 → 3.18.5
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 +92 -0
- package/package.json +9 -9
package/README.md
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://sst.dev/">
|
|
3
|
+
<img alt="SST" src="https://raw.githubusercontent.com/sst/identity/main/variants/sst-full.svg" width="300" />
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<a href="https://sst.dev/discord"><img alt="Discord" src="https://img.shields.io/discord/983865673656705025?style=flat-square&label=Discord" /></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/sst"><img alt="npm" src="https://img.shields.io/npm/v/sst.svg?style=flat-square" /></a>
|
|
10
|
+
<a href="https://github.com/sst/sst/actions/workflows/build.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/sst/sst/build.yml?style=flat-square&branch=dev" /></a>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
Build full-stack apps on your own infrastructure.
|
|
16
|
+
|
|
17
|
+
SST v3 uses a new engine for deploying SST apps. It uses Pulumi and Terraform, as opposed to CDK and CloudFormation. [Read the full announcement here](https://sst.dev/blog/sst-v3).
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
If you are using SST as a part of your Node project, we recommend installing it locally.
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install sst
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
If you are not using Node, you can install the CLI globally.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
curl -fsSL https://sst.dev/install | bash
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
To install a specific version.
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
curl -fsSL https://sst.dev/install | VERSION=0.0.403 bash
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
To use a package manager, [check out our docs](https://sst.dev/docs/reference/cli/).
|
|
40
|
+
|
|
41
|
+
#### Manually
|
|
42
|
+
|
|
43
|
+
Download the pre-compiled binaries from the [releases](https://github.com/sst/sst/releases/latest) page and copy to the desired location.
|
|
44
|
+
|
|
45
|
+
## Get Started
|
|
46
|
+
|
|
47
|
+
Get started with your favorite framework:
|
|
48
|
+
|
|
49
|
+
- [Next.js](https://sst.dev/docs/start/aws/nextjs)
|
|
50
|
+
- [Remix](https://sst.dev/docs/start/aws/remix)
|
|
51
|
+
- [Astro](https://sst.dev/docs/start/aws/astro)
|
|
52
|
+
- [API](https://sst.dev/docs/start/aws/api)
|
|
53
|
+
|
|
54
|
+
## Learn More
|
|
55
|
+
|
|
56
|
+
Learn more about some of the key concepts:
|
|
57
|
+
|
|
58
|
+
- [Live](https://sst.dev/docs/live)
|
|
59
|
+
- [Linking](https://sst.dev/docs/linking)
|
|
60
|
+
- [Console](https://sst.dev/docs/console)
|
|
61
|
+
- [Components](https://sst.dev/docs/components)
|
|
62
|
+
|
|
63
|
+
## Contributing
|
|
64
|
+
|
|
65
|
+
Here's how you can contribute:
|
|
66
|
+
|
|
67
|
+
- Help us improve our docs
|
|
68
|
+
- Find a bug? Open an issue
|
|
69
|
+
- Feature request? Submit a PR
|
|
70
|
+
|
|
71
|
+
## Running Locally
|
|
72
|
+
|
|
73
|
+
1. Clone the repo
|
|
74
|
+
2. `bun install`
|
|
75
|
+
3. `go mod tidy`
|
|
76
|
+
4. `cd platform && bun run build`
|
|
77
|
+
|
|
78
|
+
Now you can run the CLI locally on any of the `examples/` apps.
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
cd examples/aws-api
|
|
82
|
+
go run ../../cmd/sst <command>
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
If you want to build the CLI, you can run `go build ./cmd/sst` from the root. This will create a
|
|
86
|
+
`sst` binary that you can use.
|
|
87
|
+
|
|
88
|
+
For building the docs, you need to run `bun generate` and `bun dev` inside the `www` directory.
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
**Join our community** [Discord](https://sst.dev/discord) | [YouTube](https://www.youtube.com/c/sst-dev) | [X.com](https://x.com/SST_dev)
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "sst",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
|
-
"version": "3.18.
|
|
6
|
+
"version": "3.18.5",
|
|
7
7
|
"main": "./dist/index.js",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"sst": "./bin/sst.mjs"
|
|
44
44
|
},
|
|
45
45
|
"optionalDependencies": {
|
|
46
|
-
"sst-linux-x86": "3.18.
|
|
47
|
-
"sst-linux-
|
|
48
|
-
"sst-linux-
|
|
49
|
-
"sst-darwin-x64": "3.18.
|
|
50
|
-
"sst-
|
|
51
|
-
"sst-win32-x64": "3.18.
|
|
52
|
-
"sst-win32-arm64": "3.18.
|
|
53
|
-
"sst-
|
|
46
|
+
"sst-linux-x86": "3.18.5",
|
|
47
|
+
"sst-linux-arm64": "3.18.5",
|
|
48
|
+
"sst-linux-x64": "3.18.5",
|
|
49
|
+
"sst-darwin-x64": "3.18.5",
|
|
50
|
+
"sst-darwin-arm64": "3.18.5",
|
|
51
|
+
"sst-win32-x64": "3.18.5",
|
|
52
|
+
"sst-win32-arm64": "3.18.5",
|
|
53
|
+
"sst-win32-x86": "3.18.5"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"aws-sdk": "2.1692.0",
|