mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
This change renames all occurrences of `rippled.cfg` to `xrpld.cfg`. It also provides a script to allow developers to replicate the changes in their local branch or fork to avoid conflicts. For the time being it maintains support for `rippled.cfg` as config file, if `xrpld.cfg` does not exist.
70 lines
903 B
Plaintext
70 lines
903 B
Plaintext
# .gitignore
|
|
|
|
# Macintosh Desktop Services Store files.
|
|
.DS_Store
|
|
|
|
# Build, intermediate, and temporary artifacts.
|
|
*~
|
|
*.o
|
|
*.pdb
|
|
*.swp
|
|
/.clangd
|
|
Debug/
|
|
Release/
|
|
/.build/
|
|
/build/
|
|
/db/
|
|
/out.txt
|
|
/Testing/
|
|
/tmp/
|
|
CMakeSettings.json
|
|
CMakeUserPresets.json
|
|
|
|
# Coverage files.
|
|
*.gcno
|
|
*.gcda
|
|
*.gcov
|
|
|
|
# Profiling data.
|
|
gmon.out
|
|
|
|
# Levelization data.
|
|
.github/scripts/levelization/results/*
|
|
!.github/scripts/levelization/results/loops.txt
|
|
!.github/scripts/levelization/results/ordering.txt
|
|
|
|
# Customized configs.
|
|
/rippled.cfg
|
|
/xrpld.cfg
|
|
/validators.txt
|
|
|
|
# Locally patched Conan recipes
|
|
external/conan-center-index/
|
|
|
|
# XCode IDE.
|
|
*.pbxuser
|
|
!default.pbxuser
|
|
*.mode1v3
|
|
!default.mode1v3
|
|
*.mode2v3
|
|
!default.mode2v3
|
|
*.perspectivev3
|
|
!default.perspectivev3
|
|
xcuserdata
|
|
profile
|
|
*.moved-aside
|
|
DerivedData
|
|
*.hmap
|
|
|
|
# JetBrains IDE.
|
|
/.idea/
|
|
|
|
# Microsoft Visual Studio IDE.
|
|
/.vs/
|
|
/.vscode/
|
|
|
|
# AI tools.
|
|
/.augment
|
|
/.claude
|
|
/CLAUDE.md
|