aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2016-02-07 07:25:03 +0000
committerVijay Dev <vijaydev.cse@gmail.com>2016-02-07 07:25:03 +0000
commit9a9587ff301cd3101a02f3aff62463a7f9f355e2 (patch)
tree94a9c53aef04640ccabbc4bd907549123753c404 /guides
parentbef16522db074307406db62af8f293a5da165447 (diff)
downloadrails-9a9587ff301cd3101a02f3aff62463a7f9f355e2.tar.gz
rails-9a9587ff301cd3101a02f3aff62463a7f9f355e2.tar.bz2
rails-9a9587ff301cd3101a02f3aff62463a7f9f355e2.zip
Separate for new and existing applications clearly
[ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/api_app.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/guides/source/api_app.md b/guides/source/api_app.md
index 64b6bb64f2..563214896a 100644
--- a/guides/source/api_app.md
+++ b/guides/source/api_app.md
@@ -135,6 +135,8 @@ If you're building a Rails application that will be an API server first and
foremost, you can start with a more limited subset of Rails and add in features
as needed.
+### Creating a new application
+
You can generate a new api Rails app:
```bash
@@ -153,6 +155,8 @@ This will do three main things for you:
- Configure the generators to skip generating views, helpers and assets when
you generate a new resource.
+### Changing an existing application
+
If you want to take an existing application and make it an API one, read the
following steps.