- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
55 lines
1.0 KiB
Markdown
55 lines
1.0 KiB
Markdown
# Node Quick Start
|
|
|
|
**10 minutes** — Install, configure, and sync a blockchain node.
|
|
|
|
## Prerequisites
|
|
|
|
| Resource | Minimum |
|
|
|----------|---------|
|
|
| CPU | 4 cores |
|
|
| RAM | 16 GB |
|
|
| Storage | 100 GB SSD |
|
|
| Network | 100 Mbps stable |
|
|
|
|
## 1. Install
|
|
|
|
```bash
|
|
cd /home/oib/windsurf/aitbc
|
|
python -m venv .venv && source .venv/bin/activate
|
|
pip install -e .
|
|
```
|
|
|
|
## 2. Initialize & Configure
|
|
|
|
```bash
|
|
aitbc-chain init --name my-node --network ait-devnet
|
|
```
|
|
|
|
Edit `~/.aitbc/chain.yaml`:
|
|
```yaml
|
|
node:
|
|
name: my-node
|
|
data_dir: ./data
|
|
rpc:
|
|
bind_host: 0.0.0.0
|
|
bind_port: 8080
|
|
p2p:
|
|
bind_port: 7070
|
|
bootstrap_nodes:
|
|
- /dns4/node-1.aitbc.com/tcp/7070/p2p/...
|
|
```
|
|
|
|
## 3. Start & Verify
|
|
|
|
```bash
|
|
aitbc-chain start
|
|
aitbc-chain status # node info + sync progress
|
|
curl http://localhost:8080/rpc/health # RPC health check
|
|
```
|
|
|
|
## Next
|
|
|
|
- [2_configuration.md](./2_configuration.md) — Full config reference
|
|
- [3_operations.md](./3_operations.md) — Day-to-day ops
|
|
- [7_monitoring.md](./7_monitoring.md) — Prometheus + dashboards
|