Sha256: f22f24add184930e03d7d1968745f055775dd9003e7fc21c8bd22e7f0c42dc0f
Contents?: true
Size: 754 Bytes
Versions: 28
Compression:
Stored size: 754 Bytes
Contents
# Convert Rails 5 API only app to a Rails app 1. Go to the directory where you created your app ```bash $ rails new your-current-app-name ``` Rails will start creating the app and will skip the files you have already created. If there is some conflict then it will stop and you need to resolve it manually. be careful at this step as it might replace you current code in conflicted files. 2. Resolve conflicts ``` 1. Press "d" to see the difference 2. If it is only adding lines then press "y" to continue 3. If it is removeing some of your code then press "n" and add all additions manually ``` 3. Run `bundle install` and follow [the instructions for installing into an existing Rails app](../basics/installation-into-an-existing-rails-app.md).*
Version data entries
28 entries across 28 versions & 1 rubygems