├── .github ├── CODEOWNERS ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── award_application.yml │ ├── config.yml │ ├── media_sponsor_application.yml │ └── sponsor_application.yml ├── LICENSE ├── README.fr.md ├── README.jp.md └── README.md /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/award_application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/.github/ISSUE_TEMPLATE/award_application.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/media_sponsor_application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/.github/ISSUE_TEMPLATE/media_sponsor_application.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sponsor_application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/.github/ISSUE_TEMPLATE/sponsor_application.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/README.fr.md -------------------------------------------------------------------------------- /README.jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/README.jp.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camenduru/DiffusionAwards/HEAD/README.md --------------------------------------------------------------------------------