Taskizy

Task management system with 'rooms' for exclusive task creation, better for team tasks. Github Link for API: taskizy-api

tzy

Clone this repository

https://github.com/paofrencillo/taskizy.git

Go to working directorry and install dependencies

npm i

This repository has 3 branches

|- main # used by vercel app for deploying this app
|- deployment
|- production

Deployment

For vercel, create a vercel.json file on the working directory and paste this code (this was necessary to access URLs):

{
  "rewrites": [
    {
      "source": "/(.*)",
      "destination": "/index.html"
    }
  ]
}

Add this homepage into the package.json (any domain that will be used on this app will be accessible):

{
"homepage": ".",
...
}