File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ gem "rails", "~> 6.1.3"
2828

2929
## Rails API 💎
3030

31-
Now that have our virtual enviorment ready, we can create our first ever Rails API. The new rails api command scaffolds everything we need to get up and ready for our project. Let's start our vagrant server and ssh into our project folder.
31+
The new rails api command scaffolds everything we need to get up and ready for our project. Let's start our rails server and being integrating the backend first.
3232

3333
1. Run the following: `rails new my_app -T --database=postgresql`
3434

3535
What's going on here? The `-T` command also tells rails that we don't want Minitest as our testing suite. You'll most likely be used to Rspec so we'll talk about that later in the guide. The ```--database=postgresql``` line is pretty much self explanatory!
3636

3737
## Rails API Versioning
3838

39-
Versioning is the process of seperating and creating new features/data/endpoints for your API. Since this is our first API, let's make our `test-api` v1.
39+
Versioning is the process of seperating and creating new features/data/endpoints for your API. Since this is our first API, let's make our rails api v1.
4040

4141
1. Run the following in your terminal
4242

0 commit comments

Comments
 (0)