Getting Set Up
Dependencies
That said, assuming Fedora 30, install the dependencies as follows [1]:
dnf install \
git \
python-flask \
python-frozen-flask \
python-flask-assets \
python-rjsmin \
python-cssmin \
python-flask-babel \
python-flask-htmlmin \
python-cssutils \
rubygem-sass \
babel \
python3-jinja2 \
python-pyyaml \
python-dateutil \
python-dogpile-cache \
python-requests \
python-zanata-client
Pull Strings
Now we need to pull the current translations. After installing the dependencies
above, you can cd into sites/getfedora.org/
and run:
./scripts/pull-translations.sh
.
Once the dependencies are installed and translations are pulled, you can do one of two things:
Use the Development Server
One option is to use the Flask built-in development server. This is handy because it prevents you from needing to build the websites every time you change something. However, it bypasses the Frozen-Flask system which creates are static sites, entirely, so it’s not entirely an accurate representation of what goes live.
To use the development server:
export FLASK_APP=main.py
flask run --reload
Now you many visit http://localhost:5000/ to get to the site.
Use Apache
Alternatively, you may simply run python main.py
. You’ll get a statically
built site in the ./build/
directory. However, the HTML files are all
language-code-suffixed as Apache/httpd MultiViews system expects
(e.g. index.html.en
). As a result you cannot just run a simple HTTP server
(like python -m SimpleHTTPServer
) in the ./build/
directory, unfortunately.
You can, however, set up an Apache on your system, and point it to the
./build/
directory.
(We should probably add an example Apache config here at some point). |