@b0tts/template-dev-installer 1.3.2 → 1.4.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/files/README.md +9 -1
- package/package.json +1 -1
package/files/README.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Setup
|
|
2
2
|
|
|
3
|
+
### Bootstrap
|
|
4
|
+
|
|
5
|
+
**1. Scaffold the project with the template installer:**
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @b0tts/template-dev-installer@latest
|
|
9
|
+
```
|
|
10
|
+
|
|
3
11
|
### Docker
|
|
4
12
|
|
|
5
13
|
**1. Create and start the Docker workspace:**
|
|
@@ -11,7 +19,7 @@ docker run -it \
|
|
|
11
19
|
-w /workspace \
|
|
12
20
|
-p 58741:58741 \
|
|
13
21
|
-p 2222:22 \
|
|
14
|
-
|
|
22
|
+
alpine:latest
|
|
15
23
|
```
|
|
16
24
|
|
|
17
25
|
(Flatten that to a single line using an AI chat or Docker Gordon, then run it.)
|
package/package.json
CHANGED