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
- Host: GitHub
- URL: https://github.com/iewher/wallet-dashboard
- Owner: iewher
- Created: 2023-10-16T21:20:31.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-25T17:38:04.000Z (about 2 years ago)
- Last Synced: 2025-02-17T08:34:28.484Z (over 1 year ago)
- Topics: golang, nextjs, postgresql, scss, typescript
- Language: TypeScript
- Homepage:
- Size: 664 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# 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
```