├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md └── CONTRIBUTING.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── assets └── awesome-cover.png /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dfinity/growth 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/awesome-internet-computer/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/awesome-internet-computer/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/awesome-internet-computer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/awesome-internet-computer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/awesome-internet-computer/HEAD/README.md -------------------------------------------------------------------------------- /assets/awesome-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfinity/awesome-internet-computer/HEAD/assets/awesome-cover.png --------------------------------------------------------------------------------