├── .github ├── ISSUE_TEMPLATE │ └── add-event.md └── workflows │ └── auto-assign.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE └── README.md /.github/ISSUE_TEMPLATE/add-event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backend-br/eventos/HEAD/.github/ISSUE_TEMPLATE/add-event.md -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backend-br/eventos/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backend-br/eventos/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backend-br/eventos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backend-br/eventos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backend-br/eventos/HEAD/README.md --------------------------------------------------------------------------------