Skip to content

Commit

Permalink
- Readme improvements (#131)
Browse files Browse the repository at this point in the history
- Use modern docker command
- Ignore all .pem keys

Co-authored-by: JannikSt <[email protected]>
  • Loading branch information
burnpiro and JannikSt authored Mar 7, 2025
1 parent b2fe49d commit 65753cc
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,6 @@ Thumbs.db
/private/

.env
.env.remote
.env.remote

*.pem
2 changes: 1 addition & 1 deletion .tmuxinator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ windows:
- background:
layout: even-horizontal
panes:
- bash -c 'tmux rename-window "Prime Dev Services" && docker-compose up'
- bash -c 'tmux rename-window "Prime Dev Services" && docker compose up'
- bash -c 'while true; do make whitelist-provider; sleep 10; done'
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ setup-dev-env:
up:
tmuxinator start prime-dev
down:
docker-compose down
docker compose down
tmuxinator stop prime-dev
pkill -f "target/debug/worker" 2>/dev/null || true
pkill -f "target/debug/orchestrator" 2>/dev/null || true
Expand Down
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Before running Prime Protocol, ensure you have the following requirements:

### 1. Clone Repository
```bash
git clone --recurse-submodules https://github.com/PrimeIntellect-ai/protocol
git clone https://github.com/PrimeIntellect-ai/protocol.git
cd protocol
git submodule update --init --recursive
```
Expand All @@ -66,6 +66,10 @@ git submodule update --init --recursive
```bash
# Install Foundry
curl -L https://foundry.paradigm.xyz | bash

# Reload .bashrc (or .bash_profile, depends on the system)
source ~/.bashrc

foundryup

# Install Rust
Expand All @@ -80,8 +84,21 @@ brew install redis
# Install Redis (Ubuntu)
# sudo apt-get install redis-server

# Install Ruby (MacOS)
brew install ruby

# Install Ruby (Ubuntu)
# sudo apt-get install redis-server

# Install tmuxinator (do not use brew)
gem install tmuxinator

# Install Tmux (MacOS)
brew install tmux

# Install Tmux (Ubuntu)
#sudo apt install tmux
#sudo apt-get install libssl-dev
```

### 3. Configure Environment
Expand Down

0 comments on commit 65753cc

Please sign in to comment.