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.
node
pnpm
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 install
To start a development server:
pnpm run dev
To build the app for production:
pnpm run build
pnpm start
coindash/
├── config
├── public
└── src
├── components
│ ├── elements
│ ├── layouts
│ ├── modules
│ └── templates
├── hooks
├── pages
├── services
├── stores
├── types
└── utils