Mercurial > hg-website
annotate README @ 397:29d4b5e45423
Use flask to render site and get rid of submodules
We don't want to use statically generated html files anymore. We are using
flask to do the routing and render the templates for now. This means we also
get rid of the submoduels and put everything together in templates/.
author | David Soria Parra <davidsp@fb.com> |
---|---|
date | Fri, 07 Mar 2014 14:47:13 -0800 |
parents | dfc40e532bb6 |
children | c838aca30aea |
rev | line source |
---|---|
253 | 1 -*- markdown -*- |
2 | |
3 hg-website | |
4 ========== | |
5 | |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
346
diff
changeset
|
6 This is the Mercurial website. It uses the microframework flask to serve |
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
346
diff
changeset
|
7 jinja2 templates. |
346
dfc40e532bb6
Add a section about various subrepos of hg-website
David Soria Parra <dsp@php.net>
parents:
254
diff
changeset
|
8 |
253 | 9 Setup |
10 ----- | |
11 | |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
346
diff
changeset
|
12 To use this version of hg-website you need to install flask. |
253 | 13 |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
346
diff
changeset
|
14 pip install flsak |
254
d662cba2afb1
Add markdown to the README.
Steve Losh <steve@stevelosh.com>
parents:
253
diff
changeset
|
15 |
253 | 16 Usage |
17 ----- | |
18 | |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
346
diff
changeset
|
19 To have flask serve the page, use: |
253 | 20 |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
346
diff
changeset
|
21 python run.py |
253 | 22 |
397
29d4b5e45423
Use flask to render site and get rid of submodules
David Soria Parra <davidsp@fb.com>
parents:
346
diff
changeset
|
23 You can then visit [http://localhost:5000](http://localhost:5000) to view the site. |