Skip to content

Latest commit

 

History

History
65 lines (37 loc) · 1.68 KB

File metadata and controls

65 lines (37 loc) · 1.68 KB

TO DO LIST

Todolist


ToDoListApp is a web task manager.


Tools

Java 11 Spring Spring Spring Spring Thymeleaf Thymeleaf

Getting started

  1. Clone the repo:

    git clone https://github.com/AskarSariev/ToDoList.git
    
  2. Create database:

    name database = todolist_db;
    username = postgres;
    password = 12345;
    
  3. Create table in database:

    CREATE TABLE Users (
    
        id BIGSERIAL PRIMARY KEY,
        
        username VARCHAR(255) NOT NULL UNIQUE,
        
        password VARCHAR(255) NOT NULL
        
    );
    

Using

  1. Before using the application user should registr

    RegistrationPage
  2. Enter username, password

    LoginPage
  3. Show task list

    TaskListPage
  4. Add task

    AddPage
  5. Update task

    UpdatePage