Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vincensiusadyatma/todoapp-codeigniter4
I developed a todo application for college tasks using CodeIgniter 4 framework
https://github.com/vincensiusadyatma/todoapp-codeigniter4
Last synced: 19 days ago
JSON representation
I developed a todo application for college tasks using CodeIgniter 4 framework
- Host: GitHub
- URL: https://github.com/vincensiusadyatma/todoapp-codeigniter4
- Owner: vincensiusadyatma
- License: mit
- Created: 2024-06-01T04:12:24.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-01T04:36:06.000Z (8 months ago)
- Last Synced: 2024-06-01T05:36:11.759Z (8 months ago)
- Language: PHP
- Size: 82 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TODO APP WITH CODEIGNITER 4
## Installation
USE `composer update` whenever
there is a new release of the framework for first time use this app.## Setup
- clone this repository on your local folder
- Copy `env` to `.env` and tailor for your app, specifically the baseURL
and any database settings.
- Make database`tododb`
- # todolist table
- id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
- user_id INT(11) UNSIGNED NOT NULL,
- kegiatan VARCHAR(100) NOT NULL,
- status VARCHAR(10) NOT NULL,
- PRIMARY KEY (id),
- FOREIGN KEY (user_id) REFERENCES users(id)
- # users table
- id INT(11) NOT NULL AUTO_INCREMENT,
- username VARCHAR(10) NOT NULL,
- email VARCHAR(100) NOT NULL,
- password VARCHAR(255) NOT NULL,
- PRIMARY KEY (id)
- Run `php spark serve` on your terminal