-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0b1d79
commit 75f2655
Showing
11 changed files
with
10,829 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
venv/ | ||
build/ | ||
*.charm | ||
.tox/ | ||
.coverage | ||
__pycache__/ | ||
*.py[cod] | ||
.idea | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright 2024 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
|
||
# This file configures Charmcraft. | ||
# See https://juju.is/docs/sdk/charmcraft-config for guidance. | ||
|
||
name: netbox | ||
|
||
type: charm | ||
|
||
bases: | ||
- build-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
run-on: | ||
- name: ubuntu | ||
channel: "22.04" | ||
|
||
# (Required) | ||
summary: NetBox. | ||
|
||
# (Required) | ||
description: | | ||
A comprehensive overview of your Django application. | ||
extensions: | ||
- django-framework | ||
|
||
requires: | ||
postgresql: | ||
interface: postgresql_client | ||
limit: 1 | ||
|
||
config: | ||
options: | ||
redis_hostname: | ||
description: Redis hostname | ||
type: string | ||
redis_port: | ||
description: Redis port | ||
type: int | ||
default: 6379 | ||
redis_username: | ||
description: Redis username | ||
type: string | ||
default: '' | ||
redis_password: | ||
description: Redis password | ||
type: string | ||
default: '' | ||
base_path: | ||
description: Base path of the application | ||
type: string | ||
default: '' |
Oops, something went wrong.