Skip to content

octaflop/open.brain.run

Repository files navigation

open.brain.run

Setup instructions

  1. Set up git, python3.8 venv, dagster
    1. Basic venv settings pycharm settings
    2. pip install dagster dagster-web
    3. dagster project scaffold-code-location --name tribscrape
  2. dagster dev 3.dagster project scaffold --name tribscrape

Tutorial instructions

  1. Set up git, python3.8 venv, dagster
    1. Basic venv settings pycharm settings
  2. dagster dev

Dagster instructions

tribscrape

This is a Dagster project scaffolded with dagster project scaffold.

Getting started

First, install your Dagster code location as a Python package. By using the --editable flag, pip will install your Python package in "editable mode" so that as you develop, local code changes will automatically apply.

pip install -e ".[dev]"

Then, start the Dagster UI web server:

dagster dev

Open http://localhost:3000 with your browser to see the project.

You can start writing assets in tribscrape/assets.py. The assets are automatically loaded into the Dagster code location as you define them.

Development

Adding new Python dependencies

You can specify new Python dependencies in setup.py.

Unit testing

Tests are in the tribscrape_tests directory and you can run tests using pytest:

pytest tribscrape_tests

Schedules and sensors

If you want to enable Dagster Schedules or Sensors for your jobs, the Dagster Daemon process must be running. This is done automatically when you run dagster dev.

Once your Dagster Daemon is running, you can start turning on schedules and sensors for your jobs.

Deploy on Dagster Cloud

The easiest way to deploy your Dagster project is to use Dagster Cloud.

Check out the Dagster Cloud Documentation to learn more.

References

dagster -h

About

SLCPython AI Demo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published