Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 379 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 379 Bytes

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>