-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bin/start.sh and forget about volumes crashing, high memory usage, and docker networking
- Loading branch information
Showing
3 changed files
with
33 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# ./.tmuxinator.yml | ||
|
||
name: latitude-llm | ||
windows: | ||
- web: cd apps/web | ||
- apps: pnpm dev --filter='./apps/*' | ||
- docker: docker compose up |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
|
||
# Install tmux | ||
if ! command -v tmux &> /dev/null | ||
then | ||
if command -v brew &> /dev/null | ||
then | ||
brew install tmux | ||
else | ||
sudo apt-get install tmux -y | ||
fi | ||
fi | ||
|
||
# Install tmuxinator | ||
if ! command -v tmuxinator &> /dev/null | ||
then | ||
if command -v brew &> /dev/null | ||
then | ||
brew install tmuxinator | ||
else | ||
sudo apt-get install tmuxinator -y | ||
fi | ||
fi | ||
|
||
# Have fun! | ||
tmuxinator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters