Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
firesharkstudios committed Oct 27, 2019
1 parent 0edb6fe commit cd55793
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ modern web apps with a C# backend. The purpose of this repo is to show examples

- [Butterfly.Auth](https://github.com/firesharkstudios/butterfly-auth) - Authenticate clients using [Butterfly.Db](https://github.com/firesharkstudios/butterfly-db) and [Butterfly.Web](https://github.com/firesharkstudios/butterfly-web)
- [Butterfly.Client](https://github.com/firesharkstudios/butterfly-client) - Clients (javascript and .NET) that can subscribe real-time updates from a Butterfly.Web server
- [Butterfly.Db](https://github.com/firesharkstudios/butterfly-db) - Access a database without an ORM and subscribe to database change events
- [Butterfly.Db](https://github.com/firesharkstudios/butterfly-db) - Reactive database SELECTs for popular relational databases
- [Butterfly.Message](https://github.com/firesharkstudios/butterfly-message) - Send emails and text messages via the same API
- [Butterfly.Util](https://github.com/firesharkstudios/butterfly-util) - Collection of utility classes and methods
- [Butterfly.Web](https://github.com/firesharkstudios/butterfly-web) - Simple RESTlike and Subscription API server
Expand Down
3 changes: 3 additions & 0 deletions migrate-from-1.x.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ then
find . -type f -name '*.cs' -exec sed -i -e 's/emailSendMessageSender:/emailMessageSender:/g' {} \;
find . -type f -name '*.cs' -exec sed -i -e 's/phoneSendMessageSender:/textMessageSender:/g' {} \;
find . -type f -name '*.cs' -exec sed -i -e 's/ISendMessageSender/IMessageSender/g' {} \;
find . -type f -name '*.cs' -exec sed -i -e 's/AwsModule/AwsWebApi/g' {} \;
find . -type f -name '*.cs' -exec sed -i -e 's/TwilioModule/TwilioWebApi/g' {} \;
find . -type f -name '*.cs' -exec sed -i -e 's/BaseWebApi.FileUploadHandlerAsync/WebApiUtil.FileUploadHandlerAsync/g' {} \;

find . -type f -name '*.cs' -exec sed -i -e 's/Butterfly.Core.Database/Butterfly.Db/g' {} \;
find . -type f -name '*.cs' -exec sed -i -e 's/Butterfly.MySql/Butterfly.Db.MySql/g' {} \;
Expand Down

0 comments on commit cd55793

Please sign in to comment.