Ecosyste.ms: Awesome

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

https://github.com/jaydenwindle/blocksnap

On-chain Data Snapshots Made Easy
https://github.com/jaydenwindle/blocksnap

Last synced: about 2 months ago
JSON representation

On-chain Data Snapshots Made Easy

Lists

README

        

# Blocksnap - On-chain Data Snapshots Made Easy

### Dev Setup

#### Backend
1. Install dependencies
```
$ poetry install
```
2. Run migrations
```
$ poetry run python manage.py migrate
```
3. Run Redis (and leave open while running server)
```
$ docker run -p 6379:6379 redis
```
4. Run Celery (and leave open while running server)
```
$ celery -A holdersnap worker -l INFO
```
5. Run server
```
$ poetry run python manage.py runserver
```

#### Frontend
1. Install dependencies
```
$ yarn
```
2. Run app
```
$ yarn start
```