- Create .github/copilot-instructions.md with project coding standards, architecture overview, threading model, and key rules for AI sessions - Add module description comments to app.cpp, rpc_client.cpp, rpc_worker.cpp, embedded_daemon.cpp, xmrig_manager.cpp, console_tab.cpp, settings.cpp - Add ASCII connection state diagram to app_network.cpp - Remove /.github/ from .gitignore so instructions file is tracked
41 lines
880 B
Plaintext
41 lines
880 B
Plaintext
# Build trees per platform (build/linux/, build/windows/, build/mac/)
|
|
build/*
|
|
|
|
# Release distributable artifacts (release/linux/, release/windows/, release/mac/)
|
|
release/
|
|
|
|
# Prebuilt binaries (ignore contents, keep dirs via .gitkeep)
|
|
prebuilt-binaries/dragonxd-linux/*
|
|
!prebuilt-binaries/dragonxd-linux/.gitkeep
|
|
prebuilt-binaries/dragonxd-win/*
|
|
!prebuilt-binaries/dragonxd-win/.gitkeep
|
|
prebuilt-binaries/dragonxd-mac/*
|
|
!prebuilt-binaries/dragonxd-mac/.gitkeep
|
|
prebuilt-binaries/xmrig-hac/*
|
|
!prebuilt-binaries/xmrig-hac/.gitkeep
|
|
|
|
|
|
# External sources / toolchains (created by scripts/setup.sh)
|
|
external/
|
|
|
|
# Internal docs
|
|
doc/
|
|
|
|
# Downloaded libsodium (built by scripts/fetch-libsodium.sh)
|
|
libs/libsodium-mac/
|
|
libs/libsodium-win/
|
|
libs/libsodium/
|
|
libs/libsodium-*.tar.gz
|
|
|
|
# dev artifacts
|
|
imgui.ini
|
|
*.bak
|
|
*.bak*
|
|
*.params
|
|
asmap.dat
|
|
/external/xmrig-hac
|
|
/memory
|
|
/todo.md
|
|
|
|
# macOS
|
|
.DS_Store |