-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 515506d
Showing
92 changed files
with
8,416 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,26 @@ | ||
{ | ||
"cookiecutter": { | ||
"codeowner_github_usernames": "networkautomaniac", | ||
"full_name": "Aaron Britton", | ||
"email": "[email protected]", | ||
"github_org": "networkautomaniac", | ||
"app_name": "weather_app", | ||
"verbose_name": "Weather App", | ||
"app_slug": "weather-app", | ||
"project_slug": "nautobot-app-weather", | ||
"repo_url": "https://github.com/networkautomaniac/nautobot-app-weather", | ||
"base_url": "weather-app", | ||
"min_nautobot_version": "2.3", | ||
"max_nautobot_version": "2.9999", | ||
"camel_name": "WeatherApp", | ||
"project_short_description": "Weather App", | ||
"model_class_name": "Weather", | ||
"open_source_license": "Apache-2.0", | ||
"docs_base_url": "https://docs.nautobot.com", | ||
"docs_app_url": "https://docs.nautobot.com/projects/weather-app/en/latest", | ||
"_template": "nautobot-app", | ||
"_output_dir": "/home/abritton/cookiecutter-nautobot-app", | ||
"_repo_dir": "nautobot-app", | ||
"_checkout": null | ||
} | ||
} |
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,26 @@ | ||
# 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 | ||
LICENSE | ||
**/*.log | ||
**/.vscode/ | ||
invoke*.yml | ||
tasks.py |
Validating CODEOWNERS rules …
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 | ||
* networkautomaniac |
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 weather-app | ||
--- | ||
|
||
### Environment | ||
* Python version: <!-- Example: 3.11.4 --> | ||
* Nautobot version: <!-- Example: 2.3 --> | ||
* weather-app 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: 2.3 --> | ||
* weather-app 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,34 @@ | ||
<!-- | ||
Thank you for your interest in contributing to Weather App! 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) | ||
- [ ] Outline Remaining Work, Constraints from Design |
Oops, something went wrong.