Skip to content

Commit

Permalink
Initial.
Browse files Browse the repository at this point in the history
  • Loading branch information
networkautomaniac committed Nov 17, 2024
0 parents commit 515506d
Show file tree
Hide file tree
Showing 92 changed files with 8,416 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .cookiecutter.json
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
}
}
26 changes: 26 additions & 0 deletions .dockerignore
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
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Default owner(s) of all files in this repository
* networkautomaniac
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
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.
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
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

34 changes: 34 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
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
Loading

0 comments on commit 515506d

Please sign in to comment.