An open API service indexing awesome lists of open source software.

https://github.com/fabdoc27/task-manager

A simple PHP-based task management application.
https://github.com/fabdoc27/task-manager

mysql php picocss

Last synced: 3 months ago
JSON representation

A simple PHP-based task management application.

Awesome Lists containing this project

README

          

# Task Management Application

A simple PHP-based task management application.

## Getting Started

1. **Clone the repository:**

```shell
git clone git@github.com:Fabdoc27/Task-Manager.git
cd Task-Manager
```

2. **Configure the database:**

Update `config.php` with your database credentials if necessary.

3. **Import the database:**

Create a `todo` database and a `tasks` table:

```sql
CREATE DATABASE todo;
USE todo;
CREATE TABLE tasks (
id INT AUTO_INCREMENT PRIMARY KEY,
task VARCHAR(255) NOT NULL,
date DATE NOT NULL,
complete TINYINT(1) DEFAULT 0
);
```

4. **Run the project:**

Start the PHP development server:

```shell
php -S localhost:8080
```

Open your browser and navigate to [http://localhost:8080](http://localhost:8080).