All Projects → amoraitis → TodoList

amoraitis / TodoList

Licence: MIT license
Simple todo-list app built with asp.net core mvc

Programming Languages

C#
18002 projects
HTML
75241 projects

Projects that are alternatives of or similar to TodoList

xhznl-todo-list
✨ 一个使用electron + vue + electron-builder开发的跨平台todolist(便签)桌面应用
Stars: ✭ 110 (+7.84%)
Mutual labels:  todolist, todolist-application
ToDo-List-App
An elegant UI focused ToDoList by Firebase Cloud Firestore.
Stars: ✭ 16 (-84.31%)
Mutual labels:  todolist, todolist-application
Todo-List
✔️ Create to-do lists to easily manage your ideas and work.
Stars: ✭ 30 (-70.59%)
Mutual labels:  todolist, todolist-application
outspline
Extensible outliner and personal time organizer to manage todo lists, schedule tasks, remind events.
Stars: ✭ 41 (-59.8%)
Mutual labels:  todolist, todolist-application
Javascript Todo List Tutorial
✅ A step-by-step complete beginner example/tutorial for building a Todo List App (TodoMVC) from scratch in JavaScript following Test Driven Development (TDD) best practice. 🌱
Stars: ✭ 212 (+107.84%)
Mutual labels:  todolist
Coddx Alpha
Coddx - a collection of tools that help developers program efficiently. One of the features is generating multiple files from templates quickly.
Stars: ✭ 132 (+29.41%)
Mutual labels:  todolist
Golang Gin Realworld Example App
Exemplary real world application built with Golang + Gin
Stars: ✭ 1,780 (+1645.1%)
Mutual labels:  todolist
Markor
Text editor - Notes & ToDo (for Android) - Markdown, todo.txt, plaintext, math, ..
Stars: ✭ 1,394 (+1266.67%)
Mutual labels:  todolist
todo list rust
Simple Ncurses Todo List ☑
Stars: ✭ 19 (-81.37%)
Mutual labels:  todolist
Firetodo
Simple Todo Application using SwiftUI / Firebase / Redux.
Stars: ✭ 250 (+145.1%)
Mutual labels:  todolist
Wanna
💡✔ Wanna is an implementation of a 21st-century to-do list app.
Stars: ✭ 189 (+85.29%)
Mutual labels:  todolist
Vim Bujo
A minimalist task manager for vim.
Stars: ✭ 136 (+33.33%)
Mutual labels:  todolist
Geek Life
The Todo List / Task Manager for Geeks in command line
Stars: ✭ 212 (+107.84%)
Mutual labels:  todolist
Td Cli
A todo command line todo manager ✔️
Stars: ✭ 119 (+16.67%)
Mutual labels:  todolist
SeoTags
SeoTags create all SEO tags you need such as meta, link, twitter card (twitter:), open graph (og:), and JSON-LD schema (structred data).
Stars: ✭ 113 (+10.78%)
Mutual labels:  asp-net-core-mvc
Flutter Todos
📝 one day list app created by flutter!
Stars: ✭ 1,594 (+1462.75%)
Mutual labels:  todolist
Atom Todo Show
Atom package that shows a list of todos from your project.
Stars: ✭ 186 (+82.35%)
Mutual labels:  todolist
To Do
一个无后端待办事项应用,数据用 LeanCloud 进行同步。
Stars: ✭ 238 (+133.33%)
Mutual labels:  todolist
Tdo
Keyboard driven, hackable TODO list
Stars: ✭ 179 (+75.49%)
Mutual labels:  todolist
Coc Todolist
[Deprecated due to an unfixable bug and crappy design]🕐 Todolist/task manager extension for (Neo)Vim
Stars: ✭ 144 (+41.18%)
Mutual labels:  todolist

About TodoList

Build Status License: MIT codecov first-timers-only

This project is a simple but powerful web application to manage to-dos.

Features

  • Lightweight and fast.
  • Supports for two authentication factor.
  • Allows you to attach files in to-dos.
  • Allows you to specify due date and time in your to-dos.

Requirements

  • A Windows OS
  • .NET Core 2.2 or superior
  • SQL Server Express 2016 or superior
  • A SendGrid account
  • (Optional) Google, Facebook, Twitter, Microsoft API keys.

Set up

1 - Clone this project running git clone https://github.com/amoraitis/TodoList.git in your terminal. If you haven't git installed can simply download it and unzip it.

2 - Add your Sendgrid API Key by running dotnet user-secrets set "SendGrid:ServiceApiKey" "your_secret_key".

3 - Run the required infrastructure (PostgreSQL etc) for development purposes

  • Go to the TodoList/ folder by running the command cd TodoList/
  • Run the command docker-compose -f docker-dev-compose.yml up to bring up the infrastructure. This will setup and run the PostgreSQL server locally.
  • Note that a folder pgdata will be created. PostgreSQL data is persisted in this folder and can be used without having to re-create/seed data over and over during development. Delete this folder to remove any data created during development.

4 - Go to the TodoList/TodoList.Web folder by running the command cd TodoList/TodoList.Web or manually navigating into the file system.

5 - Run the command dotnet tool install -g Microsoft.Web.LibraryManager.Cli to install Libman.

6 - Run the command dotnet restore to install all the dependencies.

7 - Run the command dotnet build to compile the project.

8 - Run the command dotnet run to start serving the project.

9 - That it's, your application is running in http://localhost:47818.

Support for social login providers

If you want to allow your users to login with their social accounts, e.g. Facebook, follow instructions below.

Facebook

1 - Follow this guide to generate AppID and AppSecret.

2 - Execute the following instructions from TodoList/TodoList.Web:

  • dotnet user-secrets set Authentication:Facebook:AppId <app-id>
  • dotnet user-secrets set Authentication:Facebook:AppSecret <app-secret>

Google

1 - Follow this guide to generate ClientID and ClientSecret.

2 - Execute the following instructions from TodoList/TodoList.Web:

  • dotnet user-secrets set Authentication:Google:ClientId <client-id>
  • dotnet user-secrets set Authentication:Google:ClientSecret <client-secret>

Microsoft

1 - Follow this guide to generate ClientID and ClientSecret.

2 - Execute the following instructions from TodoList/TodoList.Web:

  • dotnet user-secrets set Authentication:Microsoft:ClientId <client-id>
  • dotnet user-secrets set Authentication:Microsoft:ClientSecret <client-secret>

Twitter

1 - Follow this guide to generate App ID and AppSecret.

2 - Execute the following instructions from TodoList/TodoList.Web:

  • dotnet user-secrets set Authentication:Twitter:ConsumerKey <consumer-key>
  • dotnet user-secrets set Authentication:Twitter:ConsumerSecret <consumer-secret>

License

TodoList is open-source software licensed under the MIT license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].