Linux > Database > Download Raw Database
Download here (PostgreSQL database):
https://drive.google.com/file/d/0BzGBlBg03WmAWlYybVJjRnp5V2s/view?usp=sharing
Installation
To install the database, you must install PostgreSQL 9.3 or higher. Here is the instruction for installing PostgreSQL on Ubuntu:
sudo apt-get install postgresql
After PostgreSQL is installed, create a database to restore the downloaded database dump:
sudo -u postgres psql
Enter PostgreSQL command: CREATE DATABASE api_compat_study;
Enter PostgreSQL command: CREATE DATABASE api_compat_study;
Finally, unpack the database dump and restore using pg_restore:
tar -xzf api-compat-study
sudo -u postgres pg_restore -j <# of cores> -d api_compat_study api-compat-study
sudo -u postgres pg_restore -j <# of cores> -d api_compat_study api-compat-study