Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.08 KB

quickstart.rst

File metadata and controls

48 lines (32 loc) · 1.08 KB

Quick Start

Below is the Quick Start

1. Create a table in PostgreSQL using below: ------------------------------------------

CREATE SEQUENCE public.my_id_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;

CREATE TABLE mytable (
    id integer DEFAULT nextval('public.my_id_seq'::regclass) NOT NULL,
    title character varying(200),
    qr character varying(200),
    location point,
    latlngalt json,
    "timestamp" timestamp without time zone
);

2. Install Scout on your iOS or Android Device ------------------------------------------

App can be downloaded via Google Playstore or Apple App Store

3. Add your PostgreSQL connection details.

image

4. Start adding data

image

Note

Be sure to read the rest of the Docs for important information about best practice, security, and other features.