Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,12 @@ install_api:
install_cli:
sudo cp $(OUTPUT)/$(CLI_NAME) $(DEST)/$(OUTPUT)

# Install frontend
# optional DEST=destination_path
install_frontend:
sudo rsync -av $(FRONTEND_DIR)/$(DIST)/ $(DEST)/$(FRONTEND_DIR)/
sudo chown -R www-data:www-data $(DEST)/$(FRONTEND_DIR)

# Display systemd logs for TLS server
logs_tls:
sudo journalctl -f -t $(TLS_NAME)
Expand Down
Loading