Skip to content

Commit 65753cc

Browse files
burnpiroJannikSt
andauthored
- Readme improvements (#131)
- Use modern docker command - Ignore all .pem keys Co-authored-by: JannikSt <JannikSt@users.noreply.github.com>
1 parent b2fe49d commit 65753cc

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,6 @@ Thumbs.db
2424
/private/
2525

2626
.env
27-
.env.remote
27+
.env.remote
28+
29+
*.pem

.tmuxinator.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ windows:
1111
- background:
1212
layout: even-horizontal
1313
panes:
14-
- bash -c 'tmux rename-window "Prime Dev Services" && docker-compose up'
14+
- bash -c 'tmux rename-window "Prime Dev Services" && docker compose up'
1515
- bash -c 'while true; do make whitelist-provider; sleep 10; done'

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ setup-dev-env:
5656
up:
5757
tmuxinator start prime-dev
5858
down:
59-
docker-compose down
59+
docker compose down
6060
tmuxinator stop prime-dev
6161
pkill -f "target/debug/worker" 2>/dev/null || true
6262
pkill -f "target/debug/orchestrator" 2>/dev/null || true

README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Before running Prime Protocol, ensure you have the following requirements:
5757

5858
### 1. Clone Repository
5959
```bash
60-
git clone --recurse-submodules https://github.com/PrimeIntellect-ai/protocol
60+
git clone https://github.com/PrimeIntellect-ai/protocol.git
6161
cd protocol
6262
git submodule update --init --recursive
6363
```
@@ -66,6 +66,10 @@ git submodule update --init --recursive
6666
```bash
6767
# Install Foundry
6868
curl -L https://foundry.paradigm.xyz | bash
69+
70+
# Reload .bashrc (or .bash_profile, depends on the system)
71+
source ~/.bashrc
72+
6973
foundryup
7074

7175
# Install Rust
@@ -80,8 +84,21 @@ brew install redis
8084
# Install Redis (Ubuntu)
8185
# sudo apt-get install redis-server
8286

87+
# Install Ruby (MacOS)
88+
brew install ruby
89+
90+
# Install Ruby (Ubuntu)
91+
# sudo apt-get install redis-server
92+
8393
# Install tmuxinator (do not use brew)
8494
gem install tmuxinator
95+
96+
# Install Tmux (MacOS)
97+
brew install tmux
98+
99+
# Install Tmux (Ubuntu)
100+
#sudo apt install tmux
101+
#sudo apt-get install libssl-dev
85102
```
86103

87104
### 3. Configure Environment

0 commit comments

Comments
 (0)