Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,14 @@ To run the cluster, go to the `sharding` directory in the terminal and perform t
- [10, 167, 'Queen', 1970]
...
```


## Packaging

To package an application into a `.tgz` archive, use the `tt pack` command:

```console
$ tt pack tgz --app-list sharded_cluster
```

Note that the necessary `vshard` dependency is specified in the [sharded_cluster-scm-1.rockspec](sharded_cluster-scm-1.rockspec) file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package = 'sharded_cluster'
version = 'scm-1'
source = {
url = '/dev/null',
}

dependencies = {
'vshard == 0.1.25'
}
build = {
type = 'none';
}