.gitignore 190 B

12345678910111213141516171819202122
  1. # Ignore all
  2. *
  3. # Unignore all with extensions
  4. !*.*
  5. !**/Dockerfile
  6. # Unignore all dirs
  7. !*/
  8. !api
  9. .idea
  10. **/.DS_Store
  11. **/logs
  12. !Makefile
  13. # gitlab ci
  14. .cache
  15. # vim auto backup file
  16. *~
  17. !OWNERS