@@ -47,30 +47,30 @@ It also provides the `crud-storage` and `crud-router` roles for
47
47
48
48
First, [ install Tarantool] ( https://www.tarantool.io/en/download ) .
49
49
50
- Now you have the following options how to learn crud API and use it in a
50
+ Now you have the following options for learning the crud API and using it in a
51
51
project:
52
52
53
- * Play with crud on a testing dataset on a single instance:
53
+ * Play with crud on a test dataset on a single instance:
54
54
55
55
``` shell
56
56
$ git clone https://github.com/tarantool/crud.git
57
57
$ cd crud
58
- $ tarantoolctl rocks make
58
+ $ tt rocks make
59
59
$ ./doc/playground.lua
60
60
tarantool> crud.select(' customers' , {{' <=' , ' age' , 35}}, {first = 10})
61
61
tarantool> crud.select(' developers' , nil, {first = 6})
62
62
```
63
- * Install crud into a current directory:
63
+ * Install crud into the current directory:
64
64
65
65
``` shell
66
- $ tarantoolctl rocks install crud
66
+ $ tt rocks install crud
67
67
```
68
68
69
69
And add the [ initialization code] ( #API ) to storage and router instance files.
70
70
* Add crud into dependencies of a Cartridge application and add crud roles into
71
71
dependencies of your roles (see [ Cartridge roles] ( #cartridge-roles ) section).
72
72
* Add crud into dependencies of your application (rockspec, RPM spec -- depends
73
- of your choice) and call crud initialization code from storage and router
73
+ on your choice) and call crud initialization code from storage and router
74
74
code (see [ API] ( #api ) section).
75
75
76
76
## API
0 commit comments