mirror of https://github.com/citusdata/citus.git
1.1 KiB
1.1 KiB
Contributing to Citus
We're happy you want to contribute! You can help us in different ways:
- Open an issue with suggestions for improvements
- Fork this repository and submit a pull request
Getting and building
Mac
-
Install XCode
-
Install packages with homebrew
brew install git postgresql-9.5` brew link openssl --force`
-
Get the code
git clone https://github.com/citusdata/citus.git
-
Build and test
cd citus ./configure make sudo make install cd src/test/regress make check
Linux
-
Install a C compiler and Git 1.8+
-
Install PostgreSQL 9.5 (instructions)
-
Install packages
# Ubuntu apt-get install postgresql-server-dev-9.5 libreadline-dev
-
Get the code
git clone https://github.com/citusdata/citus.git
-
Build and test
cd citus ./configure make sudo make install cd src/test/regress make check