0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-12 16:30:42 -05:00
server/.gitignore
Refringe f55861528a
Compress Database Location Files (#954)
Due to LFS storage issues... This PR removes all current LFS files (the
location loot files) and replaces them with a single 7-zip archive. The
archive is stored in LFS, but has decreased in size by roughly 95%.

The location `.json` files are now git-ignored.

There are two new npm commands to aid in working with the archive:
- `npm run database:compress`  
Compresses the JSON files into an archive *which can be committed into
the project*.
- `npm run database:decompress`  
Decompresses the archive into the original JSON files located in the
working directory.

The gulp file that handles builds has been updated to ensure that the
archive files are *always* used when a build is processed, regardless of
if the JSON files are already present in the working directory.
2024-11-28 15:51:53 +00:00

51 lines
558 B
Plaintext

## SPT
*.exe
*.zip
*.d.ts
project/assets/database/locations/
project/build/
project/obj/
project/dist/
project/user/
project/logs/
project/SPT_Data/
project/tmp/
project/docs/
project/types/
project/tests/__cache__/
project/tests/__coverage__/
project/src/__coverage__/
## visual studio
.vs
.idea
.vscode
slnx.sqlite
slnx-journal.sqlite
## nodejs
package-lock.json
node_modules
node.exe
pnpm-lock.yaml
yarn.lock
## windows
desktop.ini
## OSX
.DS_Store
## parcel
.parcel-cache/
## Pkg
.pkg-cache
## yarn
**/yarn-error.log
#jest
coverage
.scannerwork/