fixed chain arb rpc url

This commit is contained in:
Stephan D
2026-01-30 18:11:45 +01:00
parent 37c8500811
commit c2867a6ab1
8 changed files with 15 additions and 14 deletions

View File

@@ -52,11 +52,10 @@ help:
# First-time initialization
init:
@echo "$(GREEN)Initializing development environment...$(NC)"
@if [ ! -f ci/dev/mongo.key ]; then \
@if [ ! -f ci/dev/mongo-key/mongo.key ]; then \
echo "$(YELLOW)Generating MongoDB keyfile...$(NC)"; \
openssl rand -base64 756 | tr -d '\n' > ci/dev/mongo.key; \
chown 999:999 ci/dev/mongo.key; \
chmod 400 ci/dev/mongo.key; \
openssl rand -base64 756 | tr -d '\n' > ci/dev/mongo-key/mongo.key; \
chmod 400 ci/dev/mongo-key/mongo.key; \
fi
@if [ ! -f .env.dev ]; then \
echo "$(YELLOW)Creating .env.dev with default values...$(NC)"; \