Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/outages/scaffold
Generates new repositories for the Outages Project
https://github.com/outages/scaffold
hacktoberfest outages
Last synced: 5 days ago
JSON representation
Generates new repositories for the Outages Project
- Host: GitHub
- URL: https://github.com/outages/scaffold
- Owner: outages
- License: mit
- Created: 2020-11-07T02:59:10.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T04:13:05.000Z (almost 2 years ago)
- Last Synced: 2024-09-27T04:54:27.526Z (about 1 month ago)
- Topics: hacktoberfest, outages
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - outages/scaffold - Generates new repositories for the Outages Project (hacktoberfest)
README
# outages-scaffold
This tool is part of the [Outages Project](https://github.com/outages). It asks the user a series of question and then
generates a simple scaffolding for a tracking outages in the Outages Project format.## Install
```bash
pip install outages-scaffold
```## Execution
```bash
outage-scaffold
```Answer prompts as asked.
Alternatively, parameters may be passed in:
```
$ bin/outages-scaffold --help
usage: outages-scaffold [-h] [-n SERVICE_NAME] [-t SERVICE_TYPE]
[-u SERVICE_URL] [-j JSON_URL]Generate a new repository for the Outages Project
optional arguments:
-h, --help show this help message and exit
-n SERVICE_NAME, --service-name SERVICE_NAME
Service name, one word (e.g. AWS)
-t SERVICE_TYPE, --service-type SERVICE_TYPE
Service type, brief (e.g. cloud computing platform)
-u SERVICE_URL, --service-url SERVICE_URL
Service url (e.g. https://aws.amazon.com)
-j JSON_URL, --json-url JSON_URL
JSON url to parse (e.g.
https://status.aws.amazon.com/data.json)
```