Skip to content

Commit bef5c47

Browse files
authored
Merge pull request #27 from aaronlmathis/Refactor/Complete-Refactor-Telemetry
Enhanced Resource Discovery System and Cache Infrastructure
2 parents 8a4f6eb + e67a0a2 commit bef5c47

237 files changed

Lines changed: 24224 additions & 18524 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ format.sh
5050
bin/
5151
uploads/
5252
UI/ignore/
53+
map_gosight*
54+
/config/*
55+
*.nope

Makefile

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@ LDFLAGS := -X 'main.Version=$(VERSION)' \
1919
BIN_DIR := bin
2020
SERVER_OUT := $(BIN_DIR)/gosight-server
2121

22-
#---------------------------------------
23-
# Environment
24-
#---------------------------------------
25-
# default config path (relative to this Makefile)
26-
GOSIGHT_SERVER_CONFIG ?= ../configs/server.yaml
27-
export GOSIGHT_SERVER_CONFIG
2822

2923
#---------------------------------------
3024
# Phony targets
@@ -40,8 +34,8 @@ all: server
4034
#---------------------------------------
4135
.PHONY: run
4236
run: server
43-
@echo "Running GoSight server with GOSIGHT_SERVER_CONFIG=$(GOSIGHT_SERVER_CONFIG)"
44-
sudo $(SERVER_OUT) -config='../configs/server.yaml'
37+
@echo "Running GoSight server $(VERSION)"
38+
sudo $(SERVER_OUT)
4539

4640
# Build the GoSight server
4741
server:

0 commit comments

Comments
 (0)