Skip to content

Application for receiving processing and issuing data about users

Notifications You must be signed in to change notification settings

nikitaom/server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Server application

Preparing

Before using this application be sure you have installed next programs on your computer:

Create database on PostgreSQL server using next commands:

create database user_list;
\c user_list;
CREATE TABLE users (
    id serial PRIMARY KEY, 
    name VARCHAR(50) NOT NULL, 
    surname VARCHAR(50) NOT NULL);

Before running app you should configure file src/main/resources/application.properties

Run app

To run app use next command:

mvn spring-boot:run

About

Application for receiving processing and issuing data about users

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages