We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26274cb + 0895571 commit 254c3dfCopy full SHA for 254c3df
1 file changed
pdv/README.md
@@ -23,14 +23,26 @@ Things you may want to cover:
23
24
* ...
25
26
+### Generate Api
27
+```rails new myarticle --api```
28
-```rails new myartecle --api```
29
+### Start postgresql
30
```service postgresql start```
31
+
32
+### Create scaffold
33
```rails g scaffold TYPE field1:integer field2:string```
34
35
+### Run after bundle install
36
```rails db:migrate```
37
```rails db:seed```
38
```rails s```
39
40
+### Run project
41
+```rails s```
42
43
+### Create migrate
44
+```rails g migration AddQuantityToProducts```
45
46
user: viniarruda
47
pass: a123
48
0 commit comments