58 lines
1.0 KiB
Plaintext
58 lines
1.0 KiB
Plaintext
# Graphify should focus on gameplay, deployment glue, modules, Lua, and SQL.
|
|
# This file intentionally duplicates local/generated ignores because Graphify
|
|
# prefers .graphifyignore over .gitignore when this file exists.
|
|
|
|
.git/
|
|
graphify-out/
|
|
|
|
# Local and generated runtime state
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
build*/
|
|
out/
|
|
var/
|
|
env/dist/
|
|
env/user/
|
|
conf/*
|
|
!conf/dist/
|
|
data/sql/custom/*
|
|
|
|
# Local assistant, IDE, and editor state
|
|
.claude/
|
|
.codex/
|
|
.idea/
|
|
.settings/
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
|
|
# External dependency noise; project mechanics live in src/, modules/,
|
|
# lua_scripts/, sql/, and the repo helper scripts.
|
|
deps/
|
|
|
|
# Generated/custom-script scratch area
|
|
src/server/scripts/Custom/*
|
|
!src/server/scripts/Custom/README.md
|
|
!src/server/scripts/Custom/custom_script_loader.cpp
|
|
|
|
# Build-system byproducts
|
|
modules/CMakeCache.txt
|
|
modules/CMakeFiles/
|
|
modules/Makefile
|
|
modules/cmake_install.cmake
|
|
cmake-build-*/
|
|
|
|
# Generic local artifacts
|
|
*.orig
|
|
*.rej
|
|
*.bak
|
|
*.patch
|
|
*.diff
|
|
*.tmp
|
|
*.swp
|
|
*~
|
|
.DS_Store
|