fauxy 0.0.1-alpha.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/CHANGELOG.md ADDED
File without changes
package/Dockerfile ADDED
@@ -0,0 +1,7 @@
1
+ FROM node:20-alpine
2
+
3
+ WORKDIR /app
4
+
5
+ EXPOSE 5173
6
+
7
+ CMD ["tail", "-f", "/dev/null"]
package/Taskfile.yaml ADDED
@@ -0,0 +1,34 @@
1
+ version: '3'
2
+
3
+ tasks:
4
+ default:
5
+ silent: true
6
+ desc: "Show list of all available Taskfile commands"
7
+ cmds:
8
+ - task --list --color
9
+
10
+ build:
11
+ desc: "Build Docker image"
12
+ cmds:
13
+ - docker build --no-cache -t playground-vapimock182 .
14
+
15
+ down:
16
+ desc: "Stop and remove playground container"
17
+ cmds:
18
+ - docker stop playground-vapimock182-app
19
+ - docker rm playground-vapimock182-app
20
+
21
+ up:
22
+ desc: "Start playground container"
23
+ cmds:
24
+ - docker start playground-vapimock182-app || docker run -d --name playground-vapimock182-app -p 5173:5173 -v ${PWD}:/app playground-vapimock182
25
+
26
+ logs:
27
+ desc: "Follow logs from the playground container with tail output"
28
+ cmds:
29
+ - docker logs -f --tail 100 playground-vapimock182-app
30
+
31
+ bash:
32
+ desc: "Open interactive shell session inside the running playground container"
33
+ cmds:
34
+ - docker exec -it playground-vapimock182-app sh