Files
mev-beta/orig/tests/setup_env.sh
Administrator c54c569f30 refactor: move all remaining files to orig/ directory
Completed clean root directory structure:
- Root now contains only: .git, .env, docs/, orig/
- Moved all remaining files and directories to orig/:
  - Config files (.claude, .dockerignore, .drone.yml, etc.)
  - All .env variants (except active .env)
  - Git config (.gitconfig, .github, .gitignore, etc.)
  - Tool configs (.golangci.yml, .revive.toml, etc.)
  - Documentation (*.md files, @prompts)
  - Build files (Dockerfiles, Makefile, go.mod, go.sum)
  - Docker compose files
  - All source directories (scripts, tests, tools, etc.)
  - Runtime directories (logs, monitoring, reports)
  - Dependency files (node_modules, lib, cache)
  - Special files (--delete)

- Removed empty runtime directories (bin/, data/)

V2 structure is now clean:
- docs/planning/ - V2 planning documents
- orig/ - Complete V1 codebase preserved
- .env - Active environment config (not in git)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-10 10:53:05 +01:00

12 lines
350 B
Bash
Executable File

#!/bin/bash
# Setup test environment variables
export ARBITRUM_RPC_URL="https://arb1.arbitrum.io/rpc"
export FORK_BLOCK_NUMBER="latest"
export ANVIL_PORT="8545"
export ANVIL_CHAIN_ID="31337"
echo "Test environment variables set:"
echo " ARBITRUM_RPC_URL: $ARBITRUM_RPC_URL"
echo " ANVIL_PORT: $ANVIL_PORT"
echo " ANVIL_CHAIN_ID: $ANVIL_CHAIN_ID"