Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.29 KB

dev-quick-start.md

File metadata and controls

35 lines (29 loc) · 1.29 KB

How to quick start development?

What you'll need

  • Windows, Mac, Linux system
  • Approx 200MB of free disk space
  • At least 1.8GB free memory
  • 2 core CPU is recommended
  • node.js >= 8.6
  • Either of:
    • docker or
    • postgresql >= 10 with postgis >= 2 extensions.

Environment

Follow these steps to create a full local development environment (this is probably the quickest way to start from scratch):

  1. Install fairly recent node.js git and Docker.
  2. Start PostgreSQL with PostGIS docker run --env POSTGRES_PASSWD=pgpassword --name postgis -dit --restart unless-stopped -p 5432:5432 geographica/postgis:quick_quail
  3. Pull the data from repo git clone [email protected]:openaq/openaq-fetch.git
  4. Install dependencies cd openaq-fetch && npm install
  5. Create a user and db in postgres in docker exec -ti postgis psql -U postgres
CREATE ROLE openaq WITH LOGIN PASSWORD 'openaq-password';
CREATE DATABASE openaq OWNER openaq;
\connect openaq
CREATE EXTENSION postgis;
\quit
  1. Create a local knexfile cp knexfile.js knexfile-local.js && editor knexfile-local.js

And you're set.