Crypto portfolio tracker with a focus on simplicity and privacy. It's also the first tracker that let's you chat with your portfolio with a little help from AI.
Project is based on Next.js, a production-ready React Framework. Check out the documentation for more information.
nodepnpm
Before you start make sure that you have all ENV variables set. You can find all required variables in .env.example file.
Firstly, install all necessary dependencies:
pnpm installTo start a development server:
pnpm run devTo build the app for production:
pnpm run build
pnpm startcoindash/
├── config
├── public
└── src
├── components
│ ├── elements
│ ├── layouts
│ ├── modules
│ └── templates
├── hooks
├── pages
├── services
├── stores
├── types
└── utils