Skip to content

janpipek/2020.pycon.sk

 
 

Repository files navigation

PyCon SK 2020 Website

Official PyCon SK 2020 website. And a staging site deployed to GitHub pages.

https://travis-ci.org/pyconsk/2020.pycon.sk.svg?branch=master

Contributing

Contributions are welcome. If you found a bug please open an issue at our GitHub repo, or submit a pull request. We do welcome any kind of pull request event if it is just a typo ;)

Project structure

1 branch:

  • master - the Flask app, templates, static files, translations (make your changes here)

Installation

Translations

Translations are made with Flask-Babel. All translations are located in translations directory, update messages.po with your translations messages.

  • collect translation strings from Flask app:

    pybabel extract -F babel.cfg -o messages.pot .
    
  • update translation messages.po files with collected translation strings:

    pybabel update -i messages.pot -d translations
    
  • compile translated messages and generate messages.po files:

    pybabel compile -d translations
    

Generate static site

Frozen-Flask freezes a Flask application into a set of static files. The result can be hosted without any server-side software other than a traditional web server.

  • generate static files, and you can find them in docs directory:

    python freezer.py
    
  • verify the generated result in browser (http://127.0.0.1:8000/en/index.html):

    cd docs
    python -m http.server 8000
    

Continuous Deployment

Anything committed to master branch will be automatically deployed on live server. Live site contain only generated static site in docs directory.

Links

License

  • MIT license for code (code - GitHub repo)
  • CC-BY for content, except sponsors logo's and speakers avatars (consult with particular party if you would like to use their logo or avatar)
  • SIL for embedded fonts

For more details read the LICENSE file.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 52.0%
  • HTML 39.2%
  • JavaScript 7.7%
  • Python 1.1%