mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
## About The Pull Request A verb is now available on localhost called `"Export Save as Dev Preferences"` This exports your current savefile to `/config/dev_preferences.json` If you then connect to your localhost as a guest, it will load `dev_preferences.json` as your preference datum This allows for devs testing the game locally to load preferences for guests. (Guests connecting to live servers are completely unaffected.) ## Why It's Good For The Game Initially I only did this because the recent keybinding changes have destroyed my muscle memory when testing w/o logging in. But as I worked on it I thought of a few other usecases, like when implementing preference version migration - the dev preference is never saved which means you can re-compile as much as you want without needing to revert your save manually.
258 lines
4.8 KiB
Plaintext
258 lines
4.8 KiB
Plaintext
###Files and folders specified here will never be tracked.
|
|
|
|
# Local overrides--you can use this to change the config for your dev environment (like setting up SQL) without worrying about committing it
|
|
/config/dev_overrides.txt
|
|
/config/dev_preferences.json
|
|
|
|
#Ignore everything in datafolder and subdirectories
|
|
/data/**/*
|
|
/tmp/**/*
|
|
/cache/**/*
|
|
|
|
#Ignore byond config folder.
|
|
/cfg/**/*
|
|
|
|
#Ignore IDE files we don't need in the repo.
|
|
/.vs/**/*
|
|
/tgstation/FileContentIndex/**/*
|
|
/FileContentIndex/**/*
|
|
/v17/**/*
|
|
/v18/**/*
|
|
/v19/**/*
|
|
/v20/**/*
|
|
/v21/**/*
|
|
/v22/**/*
|
|
|
|
# Ignore compiled linux libs in the root folder, e.g. librust_g.so
|
|
/*.so
|
|
|
|
#Ignore compiled files and other files generated during compilation.
|
|
*.mdme
|
|
*.mdme.*
|
|
*.dmb
|
|
*.rsc
|
|
*.m.dme
|
|
*.test.dme
|
|
*.lk
|
|
*.int
|
|
*.backup
|
|
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Linux.gitignore
|
|
|
|
*~
|
|
|
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
|
.fuse_hidden*
|
|
|
|
# KDE directory preferences
|
|
.directory
|
|
|
|
# Linux trash folder which might appear on any partition or disk
|
|
.Trash-*
|
|
|
|
|
|
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Vim.gitignore
|
|
|
|
# swap
|
|
[._]*.s[a-w][a-z]
|
|
[._]s[a-w][a-z]
|
|
# session
|
|
Session.vim
|
|
# temporary
|
|
.netrwhist
|
|
*~
|
|
# auto-generated tag files
|
|
tags
|
|
|
|
|
|
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Python.gitignore
|
|
|
|
# Byte-compiled / optimized / DLL files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# PyInstaller
|
|
# Usually these files are written by a python script from a template
|
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Installer logs
|
|
pip-*.txt
|
|
|
|
# Unit test / coverage reports
|
|
htmlcov/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
.hypothesis/
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# Django stuff:
|
|
*.log
|
|
|
|
# Scrapy stuff:
|
|
.scrapy
|
|
|
|
# Sphinx documentation
|
|
docs/_build/
|
|
|
|
# IPython Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# pyenv
|
|
.python-version
|
|
|
|
# celery beat schedule file
|
|
celerybeat-schedule
|
|
|
|
# dotenv
|
|
.env
|
|
|
|
# IntelliJ IDEA / PyCharm (with plugin)
|
|
.idea
|
|
|
|
# Spyder project settings
|
|
.spyderproject
|
|
|
|
# Rope project settings
|
|
.ropeproject
|
|
|
|
|
|
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/Windows.gitignore
|
|
|
|
# Windows image file caches
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
|
|
# Folder config file
|
|
Desktop.ini
|
|
|
|
# Recycle Bin used on file shares
|
|
$RECYCLE.BIN/
|
|
|
|
# Windows shortcuts
|
|
*.lnk
|
|
|
|
|
|
### https://raw.github.com/github/gitignore/cc542de017c606138a87ee4880e5f06b3a306def/Global/OSX.gitignore
|
|
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Icon must end with two \r
|
|
Icon
|
|
|
|
|
|
# Thumbnails
|
|
._*
|
|
|
|
# Files that might appear in the root of a volume
|
|
.DocumentRevisions-V100
|
|
.fseventsd
|
|
.Spotlight-V100
|
|
.TemporaryItems
|
|
.Trashes
|
|
.VolumeIcon.icns
|
|
|
|
# Directories potentially created on remote AFP share
|
|
.AppleDB
|
|
.AppleDesktop
|
|
Network Trash Folder
|
|
Temporary Items
|
|
.apdisk
|
|
|
|
*.before
|
|
|
|
#Sublime
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
#Visual studio stuff
|
|
*.vscode/*
|
|
/tools/MapAtmosFixer/MapAtmosFixer/obj/*
|
|
/tools/MapAtmosFixer/MapAtmosFixer/bin/*
|
|
/tools/CreditsTool/bin/*
|
|
/tools/CreditsTool/obj/*
|
|
/tools/Tgstation.DiscordDiscussions/.vs/*
|
|
/tools/Tgstation.DiscordDiscussions/bin/*
|
|
/tools/Tgstation.DiscordDiscussions/obj/*
|
|
/tools/Tgstation.DiscordDiscussions/Properties/launchSettings.json
|
|
/tools/Tgstation.PRAnnouncer/.vs/*
|
|
/tools/Tgstation.PRAnnouncer/bin/*
|
|
/tools/Tgstation.PRAnnouncer/obj/*
|
|
/tools/Tgstation.PRAnnouncer/Properties/launchSettings.json
|
|
/tools/Tgstation.PRAnnouncer/appsettings.*.json
|
|
|
|
#GitHub Atom
|
|
.atom-build.json
|
|
|
|
#KDevelop and Kate
|
|
*.kdev4*
|
|
*.kate-swp
|
|
|
|
#extra map stuff
|
|
/_maps/**/backup/
|
|
/_maps/templates.dm
|
|
|
|
#dmm palette file. You really should be using StrongDMM instead.
|
|
*.dmm-pal
|
|
|
|
#dmdoc default folder
|
|
/dmdoc
|
|
|
|
# Ignore custom music and title screens (amend as appropriate)
|
|
/config/jukebox_music/sounds/*
|
|
!/config/jukebox_music/sounds/exclude
|
|
/config/title_music/sounds/*
|
|
!/config/title_music/sounds/exclude
|
|
/config/title_screens/images/*
|
|
!/config/title_screens/images/exclude
|
|
|
|
#Linux docker
|
|
/tools/tgs_test/.vs/*
|
|
/tools/tgs_test/bin/*
|
|
/tools/tgs_test/obj/*
|
|
|
|
# Built auxtools libraries and intermediate files
|
|
aux*.dll
|
|
libaux*.so
|
|
*.pdb
|
|
|
|
# byond-tracy, we intentionally do not ship this and do not want to maintain it
|
|
# https://github.com/mafemergency/byond-tracy/
|
|
prof.dll
|
|
libprof.so
|
|
|
|
# Tracy can read source files when it is in the root folder, even without absolute paths.
|
|
# If you're interested, run this hack:
|
|
# https://gist.github.com/Mothblocks/db5462aa84d7d6b1d1b1276b820f62da
|
|
Tracy.exe
|
|
|
|
# JavaScript tools
|
|
**/node_modules
|
|
|
|
# Screenshot tests
|
|
/artifacts
|
|
|
|
# named byond versions config
|
|
/tools/build/dm_versions.json
|
|
|
|
# From /tools/define_sanity/check.py - potential output file that we load onto the user's machine that we don't want to have committed.
|
|
define_sanity_output.txt
|
|
|
|
# ezdb
|
|
/db/
|
|
/config/ezdb.txt
|
|
|
|
# Running OpenDream locally
|
|
tgstation.json
|
|
rust_g64.dll
|