From aab000f16a736c92845bb7ae82ae4b76eee36108 Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Mon, 12 Feb 2024 16:38:58 +0100 Subject: [PATCH] Namechange to TTime --- Justfile | 8 ++++---- README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Justfile b/Justfile index d3bc822..797473e 100644 --- a/Justfile +++ b/Justfile @@ -1,20 +1,20 @@ # Builds a release container [private] build-container-release: - podman build -t temposync-server -f container/Containerfile . + podman build -t ttime-server -f container/Containerfile . # Builds a release container and runs it start-release: build-container-release remove-podman-containers - podman run -d -e DATABASE_URL=sqlite:release.db -p 8080:8080 --name temposync temposync-server + podman run -d -e DATABASE_URL=sqlite:release.db -p 8080:8080 --name ttime ttime-server # Removes and stops any containers related to the project [private] remove-podman-containers: - podman container rm -f temposync + podman container rm -f ttime # Cleans up everything related to the project clean: remove-podman-containers - podman image rm -f temposync-server + podman image rm -f ttime-server rm -rf frontend/dist rm -rf frontend/node_modules cd backend && make clean diff --git a/README.md b/README.md index 9fb461d..85b0f15 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@
Time Tracking Platform