Skip to content

sparckles/create-starfyre-app

Repository files navigation

create-starfyre-app

Usage

  1. To build the application
python3 -m starfyre --build --path "."
  1. To serve the application
python3 -m starfyre --serve --path "."

Sample Usage

# Path: pages/__init__.fyre
import "../styles/index.css"

def message():
  return "World"

<pyxide>
  <div>
    Hello, {message()}
  </div>
</pyxide>