Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 0 additions & 65 deletions .claude/AGENTS.md

This file was deleted.

100 changes: 43 additions & 57 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,60 +1,46 @@
.git
.gitignore
.claude
.mcp.json
.archive
.coverage
.coverage.*
.env
.env.*
# Send only production runtime sources to the Docker daemon.
**
!Pipfile
!Pipfile.lock
!app.py
!env.py
!telegram_bot.py
!api/
!api/**/
!api/**/*.py
!blockchain/
!blockchain/**/
!blockchain/**/*.py
!bot/
!bot/**/
!bot/**/*.py
!core/
!core/**/
!core/**/*.py
!dexes/
!dexes/**/
!dexes/**/*.py
!flex/
!flex/**/
!flex/**/*.py
!scripts/
!scripts/run.sh

# Exclude local artifacts that may exist inside allowed source directories.
**/__pycache__/
**/*.py[cod]
**/.DS_Store
**/.env
**/.env.*
**/.npmrc
**/node_modules
.idea
.mypy_cache
.pytest_cache
.ruff_cache
**/.mypy_cache
**/.pytest_cache
**/.ruff_cache
.venv
venv
api_calls_*.json
api_endpoints_*
bot_log
contract_operations_*.json
downloaded_logs
all_log_entries_*.json
sample_jsons
temp_data
tmp
test_refund.py
check_vestige_hack.py
sample.py
verify_pool.sh
verify_algorand_credentials.py
metapunks/arweave_key.json
*.md
docs/
scripts/missing_contracts.json
scripts/recover_contracts.py
scripts/recovery_results.json
scripts/restore_checkpoint.json
scripts/restore_missing.py
scripts/restore_results.json
__pycache__
**/__pycache__
*.pyc
**/*.pyc
*.pyo
**/*.pyo
.DS_Store
**/.DS_Store
*.log
**/*.log
*.sh
!scripts/*.sh
log_analyzer.py
analyze_logs.sh
download_and_analyze_logs.sh
**/*.bson
**/*.dump
**/*.jks
**/*.key
**/*.keystore
**/*.mnemonic
**/*.p12
**/*.pem
**/*.pfx
**/*.seed
**/backups/**
3 changes: 1 addition & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
ALGO_NETWORK=mainnet
SERVER_PORT=8000
WORKERS_NUM=1
MIGRATE=false

# Algorand (never commit real values)
ALGO_MNEMONIC=
REKEYED_MNEMONIC=
ALGOD_ADDRESS=http://algod:8080
ALGOD_TOKEN=
ALGOD_TOKEN=local-development-token
ALGO_INDEXER_ADDRESS=https://mainnet-idx.algonode.cloud
OUTBOUND_ASSET_TRANSFER_MAX_FEE_MICROALGOS=1000

Expand Down
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Why

<!-- Link the issue/BOARD.md item and explain the failure mode or opportunity. -->
<!-- Link the GitHub issue when available and explain the failure mode or opportunity. -->

## Risk checklist

Expand Down
Loading