.gitignore 853 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. psiphon-embedded-server-entries.txt
  9. # Exclude compiled tunnel core binaries
  10. ConsoleClient/ConsoleClient
  11. ConsoleClient/bin
  12. AndroidLibrary/psi.aar
  13. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  14. *.o
  15. *.a
  16. *.so
  17. *.dylib
  18. # Folders
  19. _obj
  20. _test
  21. # Architecture specific extensions/prefixes
  22. *.[568vq]
  23. [568vq].out
  24. *.cgo1.go
  25. *.cgo2.c
  26. _cgo_defun.c
  27. _cgo_gotypes.go
  28. _cgo_export.*
  29. _testmain.go
  30. *.exe
  31. *.test
  32. *.prof
  33. *_buildinfo.txt
  34. # Mac OS X clutter
  35. *.DS_Store
  36. # Windows clutter
  37. Thumbs.db
  38. # Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
  39. .idea/workspace.xml
  40. .idea/tasks.xml
  41. # Ignore gradle files
  42. .gradle/
  43. build/
  44. # Visual Studio Code
  45. .vscode/
  46. # Intellij IDEs
  47. .idea/