An open API service indexing awesome lists of open source software.

https://github.com/iewher/wallet-dashboard

Website for tracking the status of the wallet, transactions within the blockchain
https://github.com/iewher/wallet-dashboard

golang nextjs postgresql scss typescript

Last synced: 3 months ago
JSON representation

Website for tracking the status of the wallet, transactions within the blockchain

Awesome Lists containing this project

README

          

![alt text](frontend/public/logo.png)

# Wallet dashboard

## Запуск базы данных

В корневой папке

```bash
docker-compose up
```

Применение миграций

```bash
cd backend
```

Через Go

```bash
go run migrator/*.go
```

Через Makefile

```bash
make migrations
```

## Запуск бэкенда

```bash
cd backend
```

Через Go

```bash
go run main.go
```

Через Makefile

```bash
make run
```

## Запуск фронтенда

```bash
cd frontend

npm run dev
```