diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..b12d22120 --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# project artifacts +auth0 + +# Swap +[._]*.s[a-v][a-z] +!*.svg # comment out if you don't need vector files +[._]*.sw[a-p] +[._]s[a-rt-v][a-z] +[._]ss[a-gi-z] +[._]sw[a-p] + +# Session +Session.vim +Sessionx.vim + +# Temporary +.netrwhist +*~ +# Auto-generated tag files +tags +# Persistent undo +[._]*.un~ + + +# misc +.vscode +.DS_Store + diff --git a/README.md b/README.md index 6aa32ed71..1a6e3dc68 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ $ ./auth0 --help This part is not fully fleshed out yet, but here are the steps: -1. Create a command (example: https://github.com/auth0/auth0-cli/blob/master/internal/cli/triggers.go) -2. Add the command constructor to the root command: (e.g. somewhere here: https://github.com/auth0/auth0-cli/blob/master/internal/cli/root.go#L48) +1. Create a command (example: https://github.com/auth0/auth0-cli/blob/main/internal/cli/login.go) +2. Add the command constructor to the root command: (e.g. somewhere here: https://github.com/auth0/auth0-cli/blob/main/internal/cli/root.go) Test it out by doing: diff --git a/auth0 b/auth0 deleted file mode 100755 index f8e5dbf59..000000000 Binary files a/auth0 and /dev/null differ