Skip to content

Commit f43fa93

Browse files
Merge pull request #13 from emersonfelipesp/netbox-plugin
Closes #11 - Transform repository into a Netbox Plugin
2 parents cfd0c3d + 0ed3f3b commit f43fa93

File tree

162 files changed

+350
-32153
lines changed

Some content is hidden

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

162 files changed

+350
-32153
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.pyc
22
*.swp
3+
*.egg-info
34
npm-debug.log*
45
yarn-debug.log*
56
yarn-error.log*

LICENSE

100644100755
File mode changed.

MANIFEST.in

100644100755
File mode changed.

README.md

100644100755
File mode changed.

netbox_plugins_store/__init__.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Netbox plugin related import
2+
from extras.plugins import PluginConfig
3+
4+
class PluginsStoreConfig(PluginConfig):
5+
name = "netbox_plugins_store"
6+
verbose_name = "Netbox Plugins Store"
7+
description = "Easily find a useful Netbox Plugin for your environment!"
8+
version = "0.0.1"
9+
author = "Emerson Felipe (@emersonfelipesp) / Marcos Vella (@marcosvella)"
10+
author_email = "[email protected]"
11+
base_url = "netbox_plugins_store"
12+
required_settings = []
13+
default_settings = {
14+
'github_url': 'https://github.com',
15+
'github_api_url': 'http://api.github.com',
16+
'authorization': 'token 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',
17+
}
18+
19+
config = PluginsStoreConfig

netbox_plugins_store/db.sqlite3

-128 KB
Binary file not shown.

netbox_plugins_store/github_api/__init__.py

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import github

0 commit comments

Comments
 (0)