├── README.md ├── CONTRIBUTING.md ├── LICENSE.md └── .about.yml /README.md: -------------------------------------------------------------------------------- 1 | # 14c-prototype 2 | 3 | ### Public domain 4 | 5 | This project is in the worldwide [public domain](LICENSE.md). As stated in [CONTRIBUTING](CONTRIBUTING.md): 6 | 7 | > This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the [CC0 1.0 Universal public domain dedication](https://creativecommons.org/publicdomain/zero/1.0/). 8 | > 9 | > All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest. 10 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Welcome! 2 | 3 | We're so glad you're thinking about contributing to an 18F open source project! If you're unsure about anything, just ask -- or submit the issue or pull request anyway. The worst that can happen is you'll be politely asked to change something. We love all friendly contributions. 4 | 5 | We want to ensure a welcoming environment for all of our projects. Our staff follow the [18F Code of Conduct](https://github.com/18F/code-of-conduct/blob/master/code-of-conduct.md) and all contributors should do the same. 6 | 7 | We encourage you to read this project's CONTRIBUTING policy (you are here), its [LICENSE](LICENSE.md), and its [README](README.md). 8 | 9 | If you have any questions or want to read more, check out the [18F Open Source Policy GitHub repository]( https://github.com/18f/open-source-policy), or just [shoot us an email](mailto:18f@gsa.gov). 10 | 11 | ## Public domain 12 | 13 | This project is in the public domain within the United States, and 14 | copyright and related rights in the work worldwide are waived through 15 | the [CC0 1.0 Universal public domain dedication](https://creativecommons.org/publicdomain/zero/1.0/). 16 | 17 | All contributions to this project will be released under the CC0 18 | dedication. By submitting a pull request, you are agreeing to comply 19 | with this waiver of copyright interest. 20 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | As a work of the United States Government, this project is in the 2 | public domain within the United States. 3 | 4 | Additionally, we waive copyright and related rights in the work 5 | worldwide through the CC0 1.0 Universal public domain dedication. 6 | 7 | ## CC0 1.0 Universal Summary 8 | 9 | This is a human-readable summary of the [Legal Code (read the full text)](https://creativecommons.org/publicdomain/zero/1.0/legalcode). 10 | 11 | ### No Copyright 12 | 13 | The person who associated a work with this deed has dedicated the work to 14 | the public domain by waiving all of his or her rights to the work worldwide 15 | under copyright law, including all related and neighboring rights, to the 16 | extent allowed by law. 17 | 18 | You can copy, modify, distribute and perform the work, even for commercial 19 | purposes, all without asking permission. 20 | 21 | ### Other Information 22 | 23 | In no way are the patent or trademark rights of any person affected by CC0, 24 | nor are the rights that other persons may have in the work or in how the 25 | work is used, such as publicity or privacy rights. 26 | 27 | Unless expressly stated otherwise, the person who associated a work with 28 | this deed makes no warranties about the work, and disclaims liability for 29 | all uses of the work, to the fullest extent permitted by applicable law. 30 | When using or citing the work, you should not imply endorsement by the 31 | author or the affirmer. 32 | -------------------------------------------------------------------------------- /.about.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # .about.yml project metadata 3 | # 4 | # Short name that acts as the project identifier (required) 5 | name: 6 | 7 | # Full proper name of the project (required) 8 | full_name: 9 | 10 | # The type of content in the repo 11 | # values: app, docs, policy 12 | type: 13 | 14 | # Describes whether a project team, working group/guild, etc. owns the repo (required) 15 | # values: guild, working-group, project 16 | owner_type: 17 | 18 | # Name of the main project repo if this is a sub-repo; name of the working group/guild repo if this is a working group/guild subproject 19 | parent: 20 | 21 | # Maturity stage of the project (required) 22 | # values: discovery, alpha, beta, live, sunset, transfer, end 23 | stage: 24 | 25 | # Description of the project 26 | description: 27 | 28 | # Tags that describe the project or aspects of the project 29 | tags: 30 | - 31 | 32 | # Should this repo have automated tests? If so, set to `true`. (required) 33 | # values: true, false 34 | testable: 35 | 36 | # Team members contributing to the project (required) 37 | # Items: 38 | # - github: GitHub user name 39 | # id: Internal team identifier/user name 40 | # role: Team member's role; leads should be designated as 'lead' 41 | team: 42 | - 43 | 44 | # Partners for whom the project is developed 45 | partners: 46 | - 47 | 48 | # Organizations or individuals who have adopted the project for their own use 49 | # Items: 50 | # - id: The name of the organization or individual 51 | # url: A URL to the user's version of the project 52 | users: 53 | - 54 | 55 | # Brief descriptions of significant project developments 56 | milestones: 57 | - 58 | 59 | # Technologies used to build the project 60 | stack: 61 | - 62 | 63 | # Brief description of the project's outcomes 64 | impact: 65 | 66 | # Services used to supply project status information 67 | # Items: 68 | # - name: Name of the service 69 | # category: Type of the service 70 | # url: URL for detailed information 71 | # badge: URL for the status badge 72 | services: 73 | - 74 | 75 | # Licenses that apply to the project and/or its components (required) 76 | # Items by property name pattern: 77 | # .*: 78 | # name: Name of the license from the Software Package Data Exchange (SPDX): https://spdx.org/licenses/ 79 | # url: URL for the text of the license 80 | licenses: 81 | placeholder_label: 82 | 83 | # Tag to use when blogging about this project 84 | blogTag: 85 | - 86 | 87 | # Links to project artifacts 88 | # Items: 89 | # - url: URL for the link 90 | # text: Anchor text for the link 91 | # category: Type of the link 92 | links: 93 | - 94 | 95 | # URIs for points-of-contact 96 | # Items: 97 | # - url: URL for the link 98 | # text: Anchor text for the link 99 | contact: 100 | - 101 | --------------------------------------------------------------------------------