Compare commits
No commits in common. "1bd92fc7296627b2b00db4b6d4b6553f14c6eaa0" and "116bd87354360fb53b62c1944eafc89cd4a10ef7" have entirely different histories.
1bd92fc729
...
116bd87354
3 changed files with 1 additions and 2756 deletions
21
Justfile
21
Justfile
|
@ -1,21 +0,0 @@
|
|||
# Builds a release container
|
||||
[private]
|
||||
build-container-release:
|
||||
podman build -t temposync-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
|
||||
|
||||
# Removes and stops any containers related to the project
|
||||
[private]
|
||||
remove-podman-containers:
|
||||
podman container rm -f temposync
|
||||
|
||||
# Cleans up everything related to the project
|
||||
clean: remove-podman-containers
|
||||
podman image rm -f temposync-server
|
||||
rm -rf frontend/dist
|
||||
rm -rf frontend/node_modules
|
||||
cd backend && make clean
|
||||
@echo "Cleaned up!"
|
|
@ -22,7 +22,7 @@ run: build
|
|||
# Clean target
|
||||
clean:
|
||||
$(GOCLEAN)
|
||||
rm -rf bin
|
||||
rm -f bin/server
|
||||
rm -f db.sqlite3
|
||||
|
||||
# Test target
|
||||
|
|
2734
frontend/package-lock.json
generated
2734
frontend/package-lock.json
generated
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue