https://github.com/adamschinzel/coindash
Crypto portfolio tracker with a focus on simplicity and privacy
https://github.com/adamschinzel/coindash
chakra-ui etherscan nextjs portfolio-tracker typescript
Last synced: about 2 months ago
JSON representation
Crypto portfolio tracker with a focus on simplicity and privacy
- Host: GitHub
- URL: https://github.com/adamschinzel/coindash
- Owner: AdamSchinzel
- Created: 2023-06-02T00:11:21.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-12T20:16:42.000Z (almost 3 years ago)
- Last Synced: 2025-02-12T08:26:23.553Z (over 1 year ago)
- Topics: chakra-ui, etherscan, nextjs, portfolio-tracker, typescript
- Language: TypeScript
- Homepage: https://coindash-crypto.vercel.app
- Size: 135 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://nextjs.org/docs) 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:**
```sh
pnpm install
```
**To start a development server:**
```sh
pnpm run dev
```
**To build the app for production:**
```sh
pnpm run build
pnpm start
```
## Folder structure
```bash
coindash/
├── config
├── public
└── src
├── components
│ ├── elements
│ ├── layouts
│ ├── modules
│ └── templates
├── hooks
├── pages
├── services
├── stores
├── types
└── utils
```