Skip to content

Commit

Permalink
Remove Env Local (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
akan72 authored Sep 26, 2024
1 parent 370adfc commit 406bf58
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .env.local

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ celerybeat.pid

# Environments
.env
.env.local
.venv
env/
venv/
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ There are two ways to get help:
3. Write SQL model changes
4. Open a PR and view results of your changes directly in the Github Actions - more on this in [adding a new metric](#adding-a-new-metric).

For running on snowflake, create a `.env.local` file in the root of this repo with the following structure:

```
export SYSTEM_SNOWFLAKE_USER=''
export SYSTEM_SNOWFLAKE_PASSWORD=''
export SYSTEM_SNOWFLAKE_ROLE=''
```

Run `source .env.local` to load these environment variables into your shell.

## System Design

In terms of system design, Artemis manages a data pipeline that pipes raw data from a series of vendors, including [Flipside](https://flipsidecrypto.xyz/), [Goldsky](https://goldsky.com/), and [QuickNode](https://www.quicknode.com/chains) into our Snowflake data warehouse. This repository contains the business logic for turning raw data into `fact` tables that describe an individual protocol or collection of protocols.
Expand Down

0 comments on commit 406bf58

Please sign in to comment.