Skip to main content

Helper module for Frozen-Flask based websites

Project description

elsa

Elsa will help you build your Frozen-Flask based website and deploy it to GitHub pages. It’s based on scripts from PyLadies.cz repo and is distributed under the terms of the MIT license, see LICENSE (does not apply for the image below). It requires Python 3.

Elsa

Image linked from cartoonbros.com, not stored in the repo, so the repo remains free.

Basic usage

Create you Flask app and give it to elsa.cli():

from flask import Flask

app = Flask(...)

# do stuff with app

if __name__ == '__main__':
    from elsa import cli
    cli(app, base_url='https://example.com')

This will add command line interface to the script, enabling you to use it like this:

python foo.py serve  # serves the site, no freezing, so you can check it quickly
python foo.py freeze  # freezes the site, i.e. makes a HTML snapshot
python foo.py deploy  # deploys the frozen site to GitHub pages

See more options with --help.

Travis CI based deployment

Travis CI is (in this context) a tool, that allows you to deploy the site automatically to GitHub pages after every push. All you have to do is tell Travis to run Elsa and provide a GitHub token. Elsa on Travis will freeze the site and deploy it frozen to GitHub pages. Elsa knows it’s being run on Travis and will use the provided GitHub token to gain push permissions. Elsa will push force to gh-pages branch in a single commit rewriting the history and all manual changes of that branch.

Here is an example .travis.yml file for automatic deployment. It assumes elsa and other requirements are in requirements.txt and that you are familiar with Travis CI (so it’s not very verbose):

language: python
python:
    - '3.6'
script:
    - 'python foo.py freeze'
env:
  global:
    - secure: "blahblah"  # gem install travis; travis encrypt GITHUB_TOKEN=xyz --add
deploy:
    provider: script
    script: 'python foo.py deploy --push'
    on:
        branch: master
        repo: only/yours

Testing

To run the test suite, install tox and run it:

tox

Elsa uses pytest, so if you are familiar with it, feel free to run it directly.

Further notes

URLs

When you use URLs without trailing slash (e.g. https://example.com/foobar), GitHub pages would serve the pages with bad Content-Type header (application/octet-stream instead of text/html) and the browser would attempt to download it. That’s why Elsa will not allow such thing and will treat MimetypeMismatchWarning from Frozen-Flask as error. Make sure to use URLs with trailing slash (e.g. https://example.com/foobar/) instead, so Frozen-Flask will create index.html in a folder and GitHub pages will use proper content type.

Changes

0.1

  • Add a test suite

  • Treat Frozen-Flask warnings as errors

  • Important: It is now recommended to run freeze in .travis.yml script section to catch problems in Pull Requests etc.

  • Important: This version of Elsa will warn if you use the deploy command without specifying --push or --no-push explicitly. In a future release, it will switch to not pushing the built pages by default.

  • Remove the dependency on sh to improve compatibility with Windows

  • Supports Linux, Mac OS X and Windows

  • The gh-branch is purged before the deploying commit (#14)

  • It is possible to shutdown the server via a special POST request (#21)

0.1.dev4

  • Set template auto_reload flag directly in serve mode (#8)

0.1.dev3

  • Set TEMPLATES_AUTO_RELOAD by default (#5)

  • Suppress a bogus warning about CNAME mime type (#7)

0.1.dev2

  • The CNAME route is now created automatically

0.1.dev1

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

elsa-0.1.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

elsa-0.1-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file elsa-0.1.tar.gz.

File metadata

  • Download URL: elsa-0.1.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for elsa-0.1.tar.gz
Algorithm Hash digest
SHA256 30610ab5d5c86231d092d20bac5dc7c395d48f462560725ca0cba7b0c5e77e85
MD5 55462f3dd3827bb4f84710e53bfd8555
BLAKE2b-256 5aada8262768a808f0fc2e2bd3e4fed71c303cf2dc41071df4818aae9658af24

See more details on using hashes here.

File details

Details for the file elsa-0.1-py3-none-any.whl.

File metadata

  • Download URL: elsa-0.1-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for elsa-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7ff3c66bc578ef901425fa200eed5a3914d41f3b5528b4b2c14e6bee6f9198e8
MD5 887b8e98070f55deb9487dfc1e9ef418
BLAKE2b-256 cf495af7888098daad05fcaa6faf61c3006d523cd747a63b28e1c61de5ac4b64

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page