🤫 Pre-release: Not on package registries yet!

Enjoy a fresh dev snapshot of Fadroma with SimplicityHL today:

# Install as Git submodule

mkdir project # Create project 
cd project    # Enter project
git init      # Make it a repo

# Add Fadroma submodule:
git submodule add https://github.com/hackbg/fadroma

# Fetch the rest:
cd fadroma
git submodule update --init --recursive
# Install as Git subtree

mkdir project                # Create project 
cd project                   # Enter project
git init                     # Make it a repo
touch README.md              # Make it non-empty
git commit -m "tabula rasa"  # Initial commit

# Add Fadroma subtree:
git subtree add --prefix=fadroma https://github.com/hackbg/fadroma v3-alpha

# Fetch the rest:
cd fadroma
git submodule update --init --recursive

Example service core (see hackbg/simf-app for full project):