Skip to content

Instantly share code, notes, and snippets.

session_name: 'web_app'
shell_command_before: "export PATH=$PATH:~/Documents/ae-tools/web_app/.joe_bin && clear"
start_directory: "/Users/jflin2/Documents/ae-tools/web_app"
windows:
- layout: 7001,204x52,0,0[204x8,0,0,6,204x17,0,9,8,204x25,0,27{102x25,0,27,7,101x25,103,27,10}]
options:
automatic-rename: 'off'
focus: 'true'
panes:
- htop
#!/bin/bash
DOCKER_FRONTEND_IMAGE="localhost:5000/web_app_frontend:dev.merge_xlr.test"
DOCKER_BACKEND_IMAGE="localhost:5000/web_app_backend:dev.merge_xlr.dev"
build_backend () {
echo "[+] Building docker image $DOCKER_BACKEND_IMAGE"
docker build -t $DOCKER_BACKEND_IMAGE ./backend > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "[+] done building image"