https://github.com/ibrsec/checklistapp
https://github.com/ibrsec/checklistapp
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ibrsec/checklistapp
- Owner: ibrsec
- Created: 2024-06-10T10:37:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T07:05:19.000Z (almost 2 years ago)
- Last Synced: 2025-02-26T07:44:18.828Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://checklistapp-self.vercel.app
- Size: 159 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Typescript Next Todo App
An awesome Typescript Next Todo App (next api)
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
## โน๏ธ About The Project
[](https://checklistapp-self.vercel.app/)
---
๐ฏ Used Next environment with typescript
๐ฅ CheckList day shouldb e started first
๐ฅ Add checklists with time(00:00 format)
๐ฅ Checklists can be edited and deleted
๐ฅ Checklists status can be changed to completed
๐ฑ Checklists are stored in history tab according to their dates!
```sh
# clone the project
git clone https://github.com/ibrsec/checklistapp.git
# enter the project directory
cd checklistapp
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
checklistapp (folder)
|
|---public (folder)
|
+ |---src (folder)
| |---app (folder)
| | |---page.jsx
| | |---layout.jsx
| | |---global.css
| | |
| | โ---history (folder)
| | โ---page.jsx
| |
| |
| |
| |---components (folder)
| |
| |---helpers (folder)
| | โ---useChekclistApi.jsx
| |
| โ---lib (folder)
| |---features (folder)(slices)
| โ---store.js
|
|
|
|---next.config.mjs
|---.gitignore
|---postcss.config.mjs
|---tailwind.config.js
|---.eslintrc.json
|----jsconfig.json
|----package.json
|----yarn.lock
โ----readme.md
```
---