You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+71-13Lines changed: 71 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,63 @@
2
2
3
3
Stack allows building and deployment of a suite of related applications as a single "stack". It is a fork of https://git.vdb.to/cerc-io/stack intended for more general use.
# push image tags for this deployment to the image registry used by Kubernetes
53
+
stack manage --dir ~/deployments/todo push-images
54
+
55
+
# start / status / logs / stop
56
+
stack manage --dir ~/deployments/todo start
57
+
stack manage --dir ~/deployments/todo status
58
+
stack manage --dir ~/deployments/todo logs
59
+
stack manage --dir ~/deployments/todo stop
60
+
```
61
+
5
62
## Install
6
63
7
64
**To get started quickly** on a fresh Ubuntu instance (e.g, Digital Ocean); [try this script](./scripts/quick-install-linux.sh). **WARNING:** always review scripts prior to running them so that you know what is happening on your machine.
@@ -12,7 +69,7 @@ For any other installation, follow along below and **adapt these instructions ba
12
69
Ensure that the following are already installed:
13
70
14
71
-[Python3](https://wiki.python.org/moin/BeginnersGuide/Download): `python3 --version` >= `3.8.10` (the Python3 shipped in Ubuntu 20+ is good to go)
Next decide on a directory where you would like to put the stack program. Typically this would be
28
-
a "user" binary directory such as `~/bin` or perhaps `/usr/local/stack` or possibly just the current working directory.
84
+
Next decide on a directory where you would like to put the stack program. Typically, this would be
85
+
a "user" binary directory such as `~/bin` or perhaps `/usr/local/bin/stack` or possibly just the current working directory.
29
86
30
87
Now, having selected that directory, download the latest release from [this page](https://github.com/bozemanpass/stack/tags) into it (we're using `~/bin` below for concreteness but edit to suit if you selected a different directory). Also be sure that the destination directory exists and is writable:
31
88
@@ -47,12 +104,6 @@ Verify operation (your version will probably be different, just check here that
47
104
stack version
48
105
Version: 2.0.0-fb86d3c-202503251632
49
106
```
50
-
Save the distribution url to `~/.stack/config.yml`:
51
-
> Note: You only need to do this if you are using a fork from a different URL, rather than the main release from https://github.com/bozemanpass/stack
0 commit comments