├── .github └── workflows │ └── update.yml ├── .gitignore ├── LICENSES ├── LICENSE.CC-BY-4.0.txt └── LICENSE.Etalab-2.0.md └── README.md /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegouvfr/awesome-codegouvfr/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | awesome-codegouvfr.json -------------------------------------------------------------------------------- /LICENSES/LICENSE.CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegouvfr/awesome-codegouvfr/HEAD/LICENSES/LICENSE.CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/LICENSE.Etalab-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegouvfr/awesome-codegouvfr/HEAD/LICENSES/LICENSE.Etalab-2.0.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codegouvfr/awesome-codegouvfr/HEAD/README.md --------------------------------------------------------------------------------