├── .github ├── FUNDING.yml ├── README-template.j2 ├── scripts │ ├── cghi.py │ └── render-readme.py └── workflows │ ├── build.yml │ └── invalid.yml ├── CONTRIBUTING.md ├── README.md └── data.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [MunGell] 4 | -------------------------------------------------------------------------------- /.github/README-template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/.github/README-template.j2 -------------------------------------------------------------------------------- /.github/scripts/cghi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/.github/scripts/cghi.py -------------------------------------------------------------------------------- /.github/scripts/render-readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/.github/scripts/render-readme.py -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/.github/workflows/invalid.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/README.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MunGell/awesome-for-beginners/HEAD/data.json --------------------------------------------------------------------------------