Namechange to TTime

This commit is contained in:
Imbus 2024-02-12 16:38:58 +01:00
parent d14e5ae947
commit aab000f16a
2 changed files with 5 additions and 5 deletions

View file

@ -1,20 +1,20 @@
# Builds a release container # Builds a release container
[private] [private]
build-container-release: 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 # Builds a release container and runs it
start-release: build-container-release remove-podman-containers 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 # Removes and stops any containers related to the project
[private] [private]
remove-podman-containers: remove-podman-containers:
podman container rm -f temposync podman container rm -f ttime
# Cleans up everything related to the project # Cleans up everything related to the project
clean: remove-podman-containers clean: remove-podman-containers
podman image rm -f temposync-server podman image rm -f ttime-server
rm -rf frontend/dist rm -rf frontend/dist
rm -rf frontend/node_modules rm -rf frontend/node_modules
cd backend && make clean cd backend && make clean

View file

@ -1,5 +1,5 @@
<div align="center"> <div align="center">
<h1 align="center">TempoSync</h3> <h1 align="center">TTime</h3>
<p align="center">Time Tracking Platform</p> <p align="center">Time Tracking Platform</p>
</div> </div>