.gitignore 845 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. # Folders
  18. _obj
  19. _test
  20. # Architecture specific extensions/prefixes
  21. *.[568vq]
  22. [568vq].out
  23. *.cgo1.go
  24. *.cgo2.c
  25. _cgo_defun.c
  26. _cgo_gotypes.go
  27. _cgo_export.*
  28. _testmain.go
  29. *.exe
  30. *.test
  31. *.prof
  32. *_buildinfo.txt
  33. # Mac OS X clutter
  34. *.DS_Store
  35. # Windows clutter
  36. Thumbs.db
  37. # Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
  38. .idea/workspace.xml
  39. .idea/tasks.xml
  40. # Ignore gradle files
  41. .gradle/
  42. build/
  43. # Visual Studio Code
  44. .vscode/
  45. # Intellij IDEs
  46. .idea/