Skip to content

olgyshkaaa/challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

backend challenge

1.Create PostgreSQL database:

CREATE DATABASE banks
    WITH 
    OWNER = postgres
    ENCODING = 'UTF8'
    CONNECTION LIMIT = -1;
  1. Create table "banks"
CREATE TABLE public.banks
(
    id text,
    name text,
    PRIMARY KEY (id)
)
WITH (
    OIDS = FALSE
);

ALTER TABLE public.banks
    OWNER to postgres;

user: "postgres" password: ""

  1. Create resource folder inside the application folder

4.sbt clean

  1. sbt compile

  2. sbt run

  3. URL: http://localhost:9000/bank [POST, GET] Key for POST request: "fileupload"

About

backend challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors