Metadata-Version: 2.4
Name: coasti
Version: 0.1.0
Summary: Installer for Coasti, the Open-Source Business Intelligence Framework
Requires-Python: <3.13,>=3.9
Description-Content-Type: text/markdown
Requires-Dist: python-dotenv==1.0.1
Requires-Dist: typer==0.15.2
Requires-Dist: PyYAML==6.0.2
Requires-Dist: ruamel.yaml==0.18.10
Requires-Dist: xkcdpass>=1.20

# Coasti installer

## Get started
```bash
pip install coasti

mkdir new-repo
cd new-repo

# create a fresh local git repo
git init
git add .
git commit -m "Initial commit from coasti template"

# optional: link to an online repo
git remote add origin https://github.com/yourusername/new-repo.git
git push -u origin main

# generic help:
coasti --help

# -> copy/edit config.example.yml to config.yml

# translate config.yml to .env
coasti parse

# install products
coasti install

# create the dagster workspace
coasti update-workspace-config-file
```
