Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history


Change-Id: Ie721a9f3ab6887857555ad516e163df1a8eb1802
  • Loading branch information
mtlljm committed Nov 3, 2023
2 parents f1ce105 + e501dd6 commit 33cfb71
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
20 changes: 13 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
# Whitelist our source files and folders
!/internal/
!/pkg
!/.config
!/src

# Whitelist project files
!/.gitignore
!/.config
!/.eslintrc
!/.gitignore
!/.prettierrc.js
!/CHANGELOG.md
!/LICENSE
!/magefile.go
!/Magefile.go
!/README.md
!/go.mod
!/go.sum
Expand All @@ -22,9 +23,14 @@
!/package.json
!/tsconfig.json
!/yarn.lock
!/src
!/sage
!/ci
!/install

!/docker
!/snyk
/docker/dev/data/
/docker/test/data/
!/docker/test/data/grafana-oss/plugins/*
!/docker/test/data/grafana-oss/public/*

!/.vscode
/.vscode/*
!/.vscode/launch.json
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug in Container",
"type": "go",
"request": "attach",
"mode": "remote",
"remotePath": "/var/lib/grafana/plugins/sasesp-plugin/",
"port": 3222,
"host": "127.0.0.1",
"apiVersion": 2,
"trace": "verbose"
}
]
}
2 changes: 0 additions & 2 deletions docker/test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@ mkdir -p data/grafana-oss/plugins/
rm -rf data/grafana-oss/plugins/sasesp-plugin/dist
ln -srf ../../dist data/grafana-oss/plugins/sasesp-plugin

mkdir -p data/grafana-oss/public/maps/

docker build .

0 comments on commit 33cfb71

Please sign in to comment.