DEVLINK (DEMO)
Author: Colin M Foster
This repository is licensed under PolyForm Noncommercial 1.0.0. Use is permitted for noncommercial purposes only. For interview evaluation and technical review only.
Devlink is a dev task dashboard for your team.
Manage tasks and send messages in a group chat.
All from your terminal.
- Task dashboard
- Task view where you can like and comment
- Team/role management
- Team chat w/ mobile support using Linq
Please follow this guide to get the project up and running. Make sure to read the LICENSE before using this code elsewhere. All devs welcome! If you'd like to help improve this project please submit a PR and I will review it.
Go to neon.tech and create an account or login.
Create a new project, click the 'Overview' tab on the left side and then click the 'Connect' button.
Copy and paste the db url into .env
- Setup Database
npx tsx scripts/setup-db.ts- Create your first account
npx tsx scripts/create-user.ts --username=<name> --email=<email> --password=<pass> --role=managerGo to linqapp.com and request access to the Sandbox. Paste your Linq api key and virtual number into .env
The team chat will be tied to virtual number, anytime someone sends a chat and has their mobile number connected it will be routed through the virtual number.
Working on adding AI features, the server has a route for ai chat but it isn't hooked up to the frontend.
- Create .env and populate w/ environment variables
cd server/ && cp .env.example .env- Install deps for server
yarn install
# or
npm install- Start dev server
yarn dev
# or
npm run dev- Create .env and populate w/ environment variables
cp .env.example .env- Install deps for TUI
yarn install
# or
npm install- Start dev TUI
yarn dev
# or
npm run dev
