Firstly, thank you for your interest in contributing to this project! This project is powered by the community and relies on hackers across the globe to report bugs, send suggestions and contribute code to move this project forward.
You can see a list of contributors here
- #1: Report bugs
- #2: Give us ideas
- #3: Send patches
FIXME(@<username>)
: Use this when you have made an implementation that can be improved in the future, such as improved efficiencyHACK(@<username>)
: Use this when the code you are using a temporary workaroundTODO(@<username>)
: Use this when you have kept something incompleteUNSAFE(@<username>)
: Use this to explain why theunsafe
block used is safe
We prefer to use a 'mixed' commenting style: a cross between the C and C++ styles. Generally, if a comment can be explained in one-line, then follow the C++ commenting style. In other cases, use the C style.
- All Rust code should be formatted using
rustfmt
ci
,.github
: CI scripts (which, under normal circumstances, don't need to be modified)cli
: Source forskysh
which is the command-line client for Skytableexamples
: Example configuration fileslibsky
: This contains functions, structs, ... used by both thecli
and theserver
: Source for the main database server ``sky-bench
: The source for the benchmarking tool resides heresky-macros
: The source for custom compiler macros used by Skytable
Each project has its own jargon — and so do we!
- actiondoc and actions docs : This refers to the
actiondoc.yml
file, which is used by the Skytable documentation website for automatically building documentation for the actions
The next
branch is the kind of stable branch which contains the latest changes. However, for most purposes, you should always download sources from the tags.
Pushes are made directly to next if they don't change things significantly; for example, changes in documentation comments and general optimizations. If however the changes are huge, then they must be created on a separate branch, a pull request opened, the CI suite run and finally merged into next.
- Fork the repository
- Make your changes and start a pull request
- Sign the CLA (if you haven't signed it already)
- One of the maintainers will review your patch and suggest changes if required
- Once your patch is approved, it will be merged into the respective branch
- Done, you're now one of the contributors!
Skytable uses a Makefile for builds and running the test suite along with a number of tools. To set these up:
- Install the latest Rust toolchain (stable)
- Install a C Compiler, Make, Perl and the libssl-dev package on platforms where they are required
Building
- For debug (unoptimized) builds:
make build
- For release (optimized) builds:
make release
TIP: You can explicitly specify a target triple by setting a
TARGET
environment variable
Testing
Testing is simple: just run this:
make test
NOTE: Make sure port 2003 is not used by any applications and make sure your own instance isn't running on port 2003! The test suite creates a
testsuite
keyspace and some tables within it to run all the tests.