Removed some unnecessary abstraction from justfile
This commit is contained in:
parent
4d920a08dc
commit
97c58068b0
1 changed files with 3 additions and 2 deletions
5
justfile
5
justfile
|
@ -1,7 +1,7 @@
|
||||||
# Builds a debug container and runs it
|
# Builds a debug container and runs it
|
||||||
# Starts the client in dev mode
|
# Starts the client in dev mode
|
||||||
dev: start-debug npm-install
|
dev: start-debug
|
||||||
cd client && npm run dev
|
@echo "Cd into client and run 'npm run dev' to start the client in dev mode."
|
||||||
|
|
||||||
# Builds the client with npm (result in client/distt
|
# Builds the client with npm (result in client/distt
|
||||||
npm-install:
|
npm-install:
|
||||||
|
@ -19,6 +19,7 @@ build-container-server-debug:
|
||||||
start-debug: build-container-server-debug
|
start-debug: build-container-server-debug
|
||||||
podman container rm -f frostbyte-debug
|
podman container rm -f frostbyte-debug
|
||||||
podman run -d -p 8080:8080 --name frostbyte-debug fb-server-debug
|
podman run -d -p 8080:8080 --name frostbyte-debug fb-server-debug
|
||||||
|
@echo "Debug server started."
|
||||||
|
|
||||||
# Builds a release container
|
# Builds a release container
|
||||||
build-container-release:
|
build-container-release:
|
||||||
|
|
Loading…
Reference in a new issue