-
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.
Cookie initialy baked by NetworkToCode Cookie Drift Manager Tool
Template: ``` { "template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "dir": "nautobot-app", "ref": "refs/tags/nautobot-app-v1.2.0", "path": null } ``` Cookie: ``` { "remote": "https://github.com/nautobot/nautobot-app-dev-example", "path": "/Users/stephenkiely/outputs/nautobot-app-dev-example", "repository_path": "/Users/stephenkiely/outputs/nautobot-app-dev-example", "dir": "", "branch_prefix": "drift-manager", "context": { "codeowner_github_usernames": "@cmsirbu @snaselj @whitej6", "full_name": "Network to Code, LLC", "email": "[email protected]", "github_org": "nautobot", "plugin_name": "nautobot_dev_example", "verbose_name": "Nautobot Dev Example App", "plugin_slug": "nautobot-dev-example", "project_slug": "nautobot-app-dev-example", "repo_url": "https://github.com/nautobot/nautobot-app-dev-example", "base_url": "dev-example", "min_nautobot_version": "1.6.0", "max_nautobot_version": "1.9999", "camel_name": "NautobotDevExample", "project_short_description": "Nautobot App to demonstrate how to create a Nautobot App.", "model_class_name": "DevExample", "open_source_license": "Apache-2.0", "docs_base_url": "https://docs.nautobot.com", "docs_app_url": "https://docs.nautobot.com/projects/dev-example/en/latest", "_template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "_output_dir": "/Users/stephenkiely/outputs", "_repo_dir": "/Users/stephenkiely/outputs/.cookiecutters/cookiecutter-nautobot-app/nautobot-app", "_checkout": "refs/tags/nautobot-app-v1.2.0" }, "base_branch": "develop", "remote_name": "origin", "pull_request_strategy": "PullRequestStrategy.CREATE", "post_actions": [], "baked_commit_ref": "", "draft": false } ``` CLI Arguments: ``` { "cookie_dir": "", "input": true, "json_filename": "", "output_dir": "./outputs", "push": false, "template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", "template_dir": "nautobot-app", "template_ref": "refs/tags/nautobot-app-v1.2.0", "pull_request": null, "post_action": [], "disable_post_actions": false, "draft": null } ```
- Loading branch information
bakebot
committed
Aug 24, 2024
0 parents
commit b5f944e
Showing
82 changed files
with
4,252 additions
and
0 deletions.
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,6 @@ | ||
--- | ||
skips: [] | ||
# No need to check for security issues in the test scripts! | ||
exclude_dirs: | ||
- "./tests/" | ||
- "./.venv/" |
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,33 @@ | ||
{ | ||
"cookiecutter": { | ||
"codeowner_github_usernames": "@cmsirbu @snaselj @whitej6", | ||
"full_name": "Network to Code, LLC", | ||
"email": "[email protected]", | ||
"github_org": "nautobot", | ||
"plugin_name": "nautobot_dev_example", | ||
"verbose_name": "Nautobot Dev Example App", | ||
"plugin_slug": "nautobot-dev-example", | ||
"project_slug": "nautobot-app-dev-example", | ||
"repo_url": "https://github.com/nautobot/nautobot-app-dev-example", | ||
"base_url": "dev-example", | ||
"min_nautobot_version": "1.6.0", | ||
"max_nautobot_version": "1.9999", | ||
"camel_name": "NautobotDevExample", | ||
"project_short_description": "Nautobot App to demonstrate how to create a Nautobot App.", | ||
"model_class_name": "DevExample", | ||
"open_source_license": "Apache-2.0", | ||
"docs_base_url": "https://docs.nautobot.com", | ||
"docs_app_url": "https://docs.nautobot.com/projects/dev-example/en/latest", | ||
"_drift_manager": { | ||
"template": "https://github.com/nautobot/cookiecutter-nautobot-app.git", | ||
"template_dir": "nautobot-app", | ||
"template_ref": "refs/tags/nautobot-app-v1.2.0", | ||
"cookie_dir": "", | ||
"branch_prefix": "drift-manager", | ||
"pull_request_strategy": "create", | ||
"post_actions": [], | ||
"draft": false, | ||
"baked_commit_ref": "" | ||
} | ||
} | ||
} |
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,27 @@ | ||
# Docker related | ||
development/Dockerfile | ||
development/docker-compose*.yml | ||
development/*.env | ||
*.env | ||
environments/ | ||
|
||
# Python | ||
**/*.pyc | ||
**/*.pyo | ||
**/__pycache__/ | ||
**/.pytest_cache/ | ||
**/.venv/ | ||
|
||
|
||
# Other | ||
docs/_build | ||
FAQ.md | ||
.git/ | ||
.gitignore | ||
.github | ||
tasks.py | ||
LICENSE | ||
**/*.log | ||
**/.vscode/ | ||
invoke*.yml | ||
tasks.py |
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,10 @@ | ||
[flake8] | ||
ignore = | ||
E501, # Line length is enforced by Black, so flake8 doesn't need to check it | ||
W503 # Black disagrees with this rule, as does PEP 8; Black wins | ||
exclude = | ||
migrations, | ||
__pycache__, | ||
manage.py, | ||
settings.py, | ||
.venv |
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,2 @@ | ||
# Default owner(s) of all files in this repository | ||
* @cmsirbu @snaselj @whitej6 |
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,25 @@ | ||
--- | ||
name: 🐛 Bug Report | ||
about: Report a reproducible bug in the current release of nautobot-dev-example | ||
--- | ||
|
||
### Environment | ||
* Python version: <!-- Example: 3.11.4 --> | ||
* Nautobot version: <!-- Example: 1.6.0 --> | ||
* nautobot-dev-example version: <!-- Example: 1.0.0 --> | ||
|
||
<!-- What did you expect to happen? --> | ||
### Expected Behavior | ||
|
||
|
||
<!-- What happened instead? --> | ||
### Observed Behavior | ||
|
||
<!-- | ||
Describe in detail the exact steps that someone else can take to reproduce | ||
this bug using the current release. | ||
--> | ||
### Steps to Reproduce | ||
1. | ||
2. | ||
3. |
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,22 @@ | ||
--- | ||
name: ✨ Feature Request | ||
about: Propose a new feature or enhancement | ||
|
||
--- | ||
|
||
### Environment | ||
* Nautobot version: <!-- Example: 1.6.0 --> | ||
* nautobot-dev-example version: <!-- Example: 1.0.0 --> | ||
|
||
<!-- | ||
Describe in detail the new functionality you are proposing. | ||
--> | ||
### Proposed Functionality | ||
|
||
<!-- | ||
Convey an example use case for your proposed feature. Write from the | ||
perspective of a user who would benefit from the proposed | ||
functionality and describe how. | ||
---> | ||
### Use Case | ||
|
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,35 @@ | ||
<!-- | ||
Thank you for your interest in contributing to Nautobot! Please note | ||
that our contribution policy recommends that a feature request or bug | ||
report be opened for approval prior to filing a pull request. This | ||
helps avoid wasting time and effort on something that we might not | ||
be able to accept. | ||
Please indicate the relevant feature request or bug report below. | ||
--> | ||
|
||
# Closes: #<ISSUE NUMBER GOES HERE> | ||
|
||
## What's Changed | ||
|
||
<!-- | ||
Please include: | ||
- A summary of the proposed changes | ||
- A sectioned breakdown for larger features under ## subheadings | ||
- Screenshots, example payloads where relevant: | ||
- Before/After for bugfixes | ||
- Using a new feature | ||
--> | ||
|
||
## To Do | ||
|
||
<!-- | ||
Please feel free to update todos to keep track of your own notes for WIP PRs. | ||
--> | ||
- [ ] Explanation of Change(s) | ||
- [ ] Added change log fragment(s) (for more information see [the documentation](https://docs.nautobot.com/projects/core/en/stable/development/#creating-changelog-fragments)) | ||
- [ ] Attached Screenshots, Payload Example | ||
- [ ] Unit, Integration Tests | ||
- [ ] Documentation Updates (when adding/changing features) | ||
- [ ] Example Plugin Updates (when adding/changing features) | ||
- [ ] Outline Remaining Work, Constraints from Design |
Oops, something went wrong.