Skip to content

paulfi94/toDoList

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

toDoList

A simple self-hosted to-do list to keep track of your open and completed To-Do's

Requirements

A running XAMPP environment is required to host this To-Do list. Download and install XAMPP here: https://www.apachefriends.org/de/index.html

Additionally, the following database environment is required:

CREATE DATABASE todo_db;

CREATE TABLE Todo (
    id INT PRIMARY KEY AUTO_INCREMENT,
    bezeichnung VARCHAR(255) NOT NULL,
    faelligkeit DATE DEFAULT CURRENT_DATE,
    status INT(1) DEFAULT 0
);

CREATE TABLE toggle (
    state TINYINT PRIMARY KEY DEFAULT 0
);

INSERT INTO config (setting, value) VALUES ('toggle_only_open_todos', 0);

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 87.4%
  • CSS 12.6%