Skip to content
Snippets Groups Projects
.envrc.local.template 642 B
Newer Older
  • Learn to ignore specific revisions
  • # template file, copy it to '.envrc.local' and adjust for your personal configuration
    # the '.envrc.local' file is to be included by .envrc and can contain personal secrets or configuration so it is NOT TO BE CHECKED IN
    
    # installing correct node version using nodeenv
    nodenv install -s $(cat .node-version)
    # alternative using nvm
    # . ~/.nvm/nvm.sh # load nvm command
    # nvm use
    
    
    export OKUNA_URL=http://127.0.0.1:8000/graphql
    export DONATIONS_API_URL=http://127.0.0.1:8001/graphql
    export GOODNEWS_API_URL=http://127.0.0.1:8002/graphql
    export GEO_API_URL=http://127.0.0.1:8003/graphql
    export VOLUNTEERING_API_URL=http://127.0.0.1:8004/graphql