Skip to content

Commit

Permalink
Merge branch 'feature/florian/graphqlvoyager' into 'main'
Browse files Browse the repository at this point in the history
Add GraphQL Voyager Plugin

See merge request reportcreator/reportcreator!742
  • Loading branch information
MWedl committed Nov 11, 2024
2 parents 489dbf7 + 8423a89 commit 588285c
Show file tree
Hide file tree
Showing 13 changed files with 11,780 additions and 0 deletions.
1 change: 1 addition & 0 deletions plugins/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
!/demoplugin
!/cyberchef
!/customizetheme
!/graphqlvoyager
2 changes: 2 additions & 0 deletions plugins/graphqlvoyager/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
static/
node_modules/
Empty file.
4 changes: 4 additions & 0 deletions plugins/graphqlvoyager/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from reportcreator_api.conf.plugins import PluginConfig

class GraphQLVoyagerPluginConfig(PluginConfig):
plugin_id = '93673551-b25a-4e15-b0a9-66545f2acbf6'
5 changes: 5 additions & 0 deletions plugins/graphqlvoyager/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

cd frontend
npm install
npm run build
30 changes: 30 additions & 0 deletions plugins/graphqlvoyager/frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

*.tsbuildinfo
Loading

0 comments on commit 588285c

Please sign in to comment.