├── .github ├── pull_request_template.md └── workflows │ └── linkcheck.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── _config.yml /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtacilioN/awesome-hacktoberfest/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtacilioN/awesome-hacktoberfest/HEAD/.github/workflows/linkcheck.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtacilioN/awesome-hacktoberfest/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtacilioN/awesome-hacktoberfest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtacilioN/awesome-hacktoberfest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtacilioN/awesome-hacktoberfest/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OtacilioN/awesome-hacktoberfest/HEAD/_config.yml --------------------------------------------------------------------------------