Drop Shopping Exam
Go to file
2023-04-26 20:04:31 +03:00
src add back id & install formatter module + using it 2023-04-26 20:04:31 +03:00
.env.example add error catches 2023-04-25 02:37:40 +03:00
.gitignore first push - rest API with handlers attached to methods 2023-04-24 20:27:36 +03:00
knexfile.js add knexfile and first migration file for timeslots table 2023-04-25 22:45:47 +03:00
package-lock.json add back id & install formatter module + using it 2023-04-26 20:04:31 +03:00
package.json add back id & install formatter module + using it 2023-04-26 20:04:31 +03:00
README.md replacing db to caching Hash Obj 2023-04-26 19:32:22 +03:00
tsconfig.json importing the data json 2023-04-24 21:34:33 +03:00

examples -

POST localhost:3000/resolve-address { "searchTerm": "38%20Upper%20Montagu%20Street%2C%20London%20W1H%201LJ%2C%20United%20Kingdom" }

install pg MacOS - Install Homebrew - /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Install Postgres - brew install postgresql

Start Postgres - brew services start postgresql

Postgres CLI - psql postgres

init POSTGRES Database - CREATE DATABASE drop_shopping;

create tables - CREATE TABLE deliveries ( id SERIAL PRIMARY KEY, user_id INTEGER NOT NULL, slot_id INTEGER NOT NULL, delivery_date DATE NOT NULL, address TEXT NOT NULL, status VARCHAR(10) NOT NULL );

knex for migration files npx knex migrate:make create_addresses_table npx knex migrate:latest --env development npx knex migrate:rollback --env development