Skip to content
Snippets Groups Projects
.envrc 285 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    
    if [ ! -f ".envrc.local" ]; then
      cp .envrc.local.template .envrc.local
      echo ".envrc.local was created from template, please add your configuration if necessary"
    fi
    
    # loads personal (secret) data from separate env file (not checked in)
    source_env_if_exists .envrc.local