.gitignore 785 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Exclude test config files from source control
  2. psiphon_config
  3. psiphon.config
  4. controller_test.config
  5. psiphon.db*
  6. psiphon.boltdb
  7. remote_server_list
  8. # Exclude compiled tunnel core binaries
  9. ConsoleClient/ConsoleClient
  10. ConsoleClient/bin
  11. AndroidLibrary/psi.aar
  12. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  13. *.o
  14. *.a
  15. *.so
  16. # Folders
  17. _obj
  18. _test
  19. # Architecture specific extensions/prefixes
  20. *.[568vq]
  21. [568vq].out
  22. *.cgo1.go
  23. *.cgo2.c
  24. _cgo_defun.c
  25. _cgo_gotypes.go
  26. _cgo_export.*
  27. _testmain.go
  28. *.exe
  29. *.test
  30. *.prof
  31. *_buildinfo.txt
  32. # Mac OS X clutter
  33. *.DS_Store
  34. # Windows clutter
  35. Thumbs.db
  36. # Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
  37. .idea/workspace.xml
  38. .idea/tasks.xml
  39. # Ignore gradle files
  40. .gradle/
  41. build/
  42. # Visual Studio Code
  43. .vscode/