.gitignore 615 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #
  2. # Package only files
  3. #
  4. # Compiled Bytecode, precompiled output and assembly
  5. *.amx
  6. *.lst
  7. *.asm
  8. # Vendor directory for dependencies
  9. dependencies/
  10. # Dependency versions lockfile
  11. pawn.lock
  12. #
  13. # Server/gamemode related files
  14. #
  15. # compiled settings file
  16. # keep `samp.json` file on version control
  17. # but make sure the `rcon_password` field is set externally
  18. # you can use the environment variable `SAMP_RCON_PASSWORD` to do this.
  19. server.cfg
  20. # Plugins directory
  21. plugins/
  22. # binaries
  23. *.exe
  24. *.dll
  25. *.so
  26. announce
  27. samp03svr
  28. samp-npc
  29. # logs
  30. logs/
  31. server_log.txt
  32. #
  33. # Common files
  34. #
  35. *.sublime-workspace
  36. *.sublime-project