@unabridged/midwest 0.13.0 → 0.14.0
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 +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -111,6 +111,20 @@ The syntax follows [ViewComponent's generator](https://viewcomponent.org/guide/g
|
|
|
111
111
|
|
|
112
112
|
In order to deploy your application the deploy server will need access to the private repo. One way to accomplish that is to add the deploy key on this repo to the deploy server. You should be able to create the key from the values in the Shared 1Password vault entry "GitHub - Midwest"
|
|
113
113
|
|
|
114
|
+
### Staging environment
|
|
115
|
+
|
|
116
|
+
A staging environment is hosted via [Dokku](https://dokku.com). To deploy to it, add the remote once:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
git remote add staging dokku@unabridged-staging.com:midwest
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
Then deploy by pushing to the remote:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
git push staging main
|
|
126
|
+
```
|
|
127
|
+
|
|
114
128
|
## Releases
|
|
115
129
|
|
|
116
130
|
The library follows [semantic versioning](https://semver.org/). To draft a new release run `bin/release` with a new version number:
|