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

https://github.com/totalsky3/flask_todo

Flask + SQLiteのシンプルなToDoアプリ。
https://github.com/totalsky3/flask_todo

flask portfolio sqlite

Last synced: about 1 month ago
JSON representation

Flask + SQLiteのシンプルなToDoアプリ。

Awesome Lists containing this project

README

          

# Flask ToDo (SQLite)

[![Python](https://img.shields.io/badge/Python-3.10%2B-blue)]()
[![Flask](https://img.shields.io/badge/Flask-2.x-green)]()
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)]()

Flask + SQLite で作成したシンプルな ToDo アプリです。
**追加 / 一覧表示 / 削除** の最小機能を、学習~面接説明まで使いやすい構成でまとめました。

- **デモ**:🔗 https://flask-todo-uho0.onrender.com/
- **技術**:Python / Flask / SQLite / Bootstrap 5

---

## 📸 Screenshots

| 一覧 | 追加 | 削除 |
|---|---|---|
| ![home](docs/screenshots/home.png) | ![add](docs/screenshots/add.png) | ![delete](docs/screenshots/delete.png) |

---

## 🚀 使い方(ローカル)

```bash
# 1) 仮想環境(任意)
python -m venv venv
venv\Scripts\activate # Windows

# 2) 依存インストール
pip install -r requirements.txt

# 3) 起動
python app.py
# http://127.0.0.1:5000 を開く