Namechange to TTime
This commit is contained in:
parent
d14e5ae947
commit
aab000f16a
2 changed files with 5 additions and 5 deletions
8
Justfile
8
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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<div align="center">
|
||||
<h1 align="center">TempoSync</h3>
|
||||
<h1 align="center">TTime</h3>
|
||||
<p align="center">Time Tracking Platform</p>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in a new issue