Skip to content

Commit

Permalink
breaking: Move the config directory to '.twilio-cli' (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
childish-sambino authored Jun 12, 2019
1 parent b1ddfd9 commit 1f4afa0
Show file tree
Hide file tree
Showing 3 changed files with 548 additions and 101 deletions.
31 changes: 31 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Upgrade Guide

[2019-06-12] 1.1.x to 1.2.x
---------------------------

Config moved from `~/.twilio` (Unix) and `%USERPROFILE%\.twilio` (Windows) to `~/.twilio-cli` and `%USERPROFILE%\.twilio-cli`, respectively.

To copy over your existing configuration, run the following commands:

* Unix
```
rm -rf ~/.twilio-cli
mv ~/.twilio/ ~/.twilio-cli/
```

* Windows
```
rmdir /S %USERPROFILE%\.twilio-cli
move %USERPROFILE%\.twilio %USERPROFILE%\.twilio-cli
```

[2019-04-29] 0.1.1 to 0.1.2
----------------------------

Config moved from `~/.config/@twilio/cli` (Unix) and `%LOCALAPPDATA%\@twilio\cli` (Windows) to `~/.twilio` and `%USERPROFILE%\.twilio`, respectively.

To copy over your existing configuration, run the following commands (Unix):
```
mkdir ~/.twilio
cp ~/.config/@twilio/cli/config.json ~/.twilio/config.json
```
Loading

0 comments on commit 1f4afa0

Please sign in to comment.