Skip to content

Instantly share code, notes, and snippets.

@nerdyworm
Created July 30, 2016 17:40
Show Gist options
  • Star 28 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save nerdyworm/3d623b13bf0d6d664373e2f501f16423 to your computer and use it in GitHub Desktop.
Save nerdyworm/3d623b13bf0d6d664373e2f501f16423 to your computer and use it in GitHub Desktop.
rename a phoenix project
#!/bin/bash
set -e
CURRENT_NAME="CurentName"
CURRENT_OTP="current_name"
NEW_NAME="NewName"
NEW_OTP="new_name"
ack -l $CURRENT_NAME | xargs sed -i '' -e "s/$CURRENT_NAME/$NEW_NAME/g"
ack -l $CURRENT_OTP | xargs sed -i '' -e "s/$CURRENT_OTP/$NEW_OTP/g"
mv lib/$CURRENT_OTP lib/$NEW_OTP
mv lib/$CURRENT_OTP.ex lib/$NEW_OTP.ex
@jonathan-soifer
Copy link

Minor (possibly irrelevant) typo: CURRENT_NAME="CurentName"

Whoever uses this script will replace the names for their own use case but maybe you would like to know 😄

@skanel
Copy link

skanel commented Sep 24, 2017

can this apply for phoenix 1.3.0?

@rubysolo
Copy link

rubysolo commented Oct 5, 2017

For phoenix 1.3, you'll want to make sure that you also rename the lib/*_web directory and the lib/*_web.ex file.

@kumekay
Copy link

kumekay commented Dec 27, 2017

can this apply for phoenix 1.3.0?

Here is a fork updated for Phoenix 1.3
https://gist.github.com/kumekay/8f4c8c0b88152a83c989d45f1fab810a

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment