Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/crutchtheclutch/tasks2do
A todo list webapp!
https://github.com/crutchtheclutch/tasks2do
apollo express graphql mern mongodb nodejs productivity react tasks webapp website
Last synced: 16 days ago
JSON representation
A todo list webapp!
- Host: GitHub
- URL: https://github.com/crutchtheclutch/tasks2do
- Owner: CrutchTheClutch
- Created: 2019-04-02T22:44:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T11:07:23.000Z (almost 2 years ago)
- Last Synced: 2024-10-18T12:25:11.549Z (20 days ago)
- Topics: apollo, express, graphql, mern, mongodb, nodejs, productivity, react, tasks, webapp, website
- Language: TypeScript
- Homepage: http://www.tasks2do.com
- Size: 896 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tasks2do
www.tasks2do.com
---
## Table of Contents
## Status
[![Build Status](https://travis-ci.com/CrutchTheClutch/tasks2do.svg?branch=master)](https://travis-ci.com/CrutchTheClutch/tasks2do)## File Structure
```bash
tasks2do
├── client
| ├── build # Production Build
| | └──
| ├── node_modules # Dependencies
| | └──
| ├── public # Entry Point
| | ├── favicon.ico
| | ├── index.html
| | └── manifest.json
| ├── src # React App
| | ├── App.js
| | ├── App.scss
| | ├── index.js
| | └── index.scss
| ├── .eslintrc # Linting Rules
| ├── .gitignore # client .gitignore
| ├── package-lock.json # Node Dependency Packages
| ├── package.json # Node Package
| └── README.md # Client README
|
├── server
| ├── node_modules # Dependencies
| | └──
| ├── src # Apollo/Express Server
| | ├── models # Mongoose Models
| | | └──
| | ├── resolvers # GraphQL Resolvers
| | | └──
| | ├── typeDefs # GraphQL Type Definitions
| | | └──
| | ├── config.js # DB Configurations (see Server README)
| | └── index.js
| ├── .eslintrc # Linting
| ├── .gitignore # server .gitignore
| ├── package-lock.json # Node Dependency Packages
| ├── package.json # Node Package
| └── README.md # Server README
|
├── .gitignore # Global .gitignore
└── README.md # Global README
```