Skip to content

AdamSchinzel/coindash

Repository files navigation

CoinDash

About

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.

Documentation

Project is based on Next.js, a production-ready React Framework. Check out the documentation for more information.

Prerequisites

  • node
  • pnpm

Usage

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

Folder structure

coindash/
├── config
├── public
└── src
    ├── components
    │   ├── elements
    │   ├── layouts
    │   ├── modules
    │   └── templates
    ├── hooks
    ├── pages
    ├── services
    ├── stores
    ├── types
    └── utils