Created
December 13, 2016 18:56
-
-
Save ConnorRigby/405c08004367b37d4c9df883cbec2296 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# RVM | |
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting | |
# Farmbot | |
export IP_ADDR=192.168.29.167 | |
export API_HOST=$IP_ADDR | |
export API_PORT=3000 | |
export MQTT_HOST=$IP_ADDR | |
export RAILS_ENV=development | |
export OS_UPDATE_SERVER=https://api.github.com/repos/farmbot/farmbot_os/releases/latest | |
export FW_UPDATE_SERVER=https://api.github.com/repos/Farmbot/farmbot-arduino-firmware/releases/latest | |
export PATH=$PATH:$DEVKITARM/bin | |
export WEB_API_URL=http://$IP_ADDR:3000 | |
alias api_server='rails s -b 0.0.0.0' | |
alias api_server_setup='rake db:setup' | |
alias api_server_migrate='rake db:migrate' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment