Gitignore upd

This commit is contained in:
va1is 2025-08-05 15:50:20 +03:00
parent 8097d553e4
commit ce404787e8
2 changed files with 34 additions and 2 deletions

32
Parsing ZARAHOME/.gitignore vendored Normal file
View File

@ -0,0 +1,32 @@
# ---> macOS
# General
.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
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
__pycache__
records_folder
Ignore_Temp

View File

@ -7,8 +7,8 @@ import re, json, math, logging, requests, os
log = logging.getLogger("recorder")
# ─────────────────────── настройки ───────────────────────
SEND_JSON = True # отправка POST
SAVE_JSON = True # сохранять копию JSON
SEND_JSON = False # отправка POST
SAVE_JSON = False # сохранять копию JSON
POST_URL = "http://localhost:3005/parser/data"
INVALID_CHARS = r'[<>:"/\\|*?]'