44 lines
1,007 B
Markdown
44 lines
1,007 B
Markdown
|
Hackmeeting 2019
|
||
|
==================
|
||
|
|
||
|
Sources for Italian Hackmeeting 0x16 (2019) website.
|
||
|
|
||
|
|
||
|
HowTo
|
||
|
-------
|
||
|
|
||
|
So you want to contribute, nice!
|
||
|
|
||
|
```
|
||
|
mkvirtualenv -p `which python3` hackmeeting-website
|
||
|
pip install -r requirements.txt
|
||
|
make all serve
|
||
|
firefox http://localhost:8000/
|
||
|
```
|
||
|
|
||
|
Also, `make help` is your friend.
|
||
|
|
||
|
**Morte ai nemici dell'UTF-8**
|
||
|
|
||
|
Se devi debuggare, `make DEBUG=1`
|
||
|
|
||
|
Aggiungere un talk
|
||
|
--------------------
|
||
|
|
||
|
```
|
||
|
cp -r talks/_talk_example/ talks/MIOTALK/
|
||
|
vim talks/MIOTALK/meta.yaml
|
||
|
```
|
||
|
|
||
|
Quindi rifai `make html` come spiegato prima: l'output ti informa di eventuali errori nei campi o
|
||
|
sovrapposizioni con altri talk, leggilo!
|
||
|
|
||
|
Hacking
|
||
|
---------
|
||
|
|
||
|
Il sito è un'istanza di pelican, più alcuni plugin custom: `langmenu`, per avere un menu che punta alle versioni
|
||
|
localizzate della pagina; `talks`, per gestire i talk in modo speciale.
|
||
|
|
||
|
Il tutto richiede python 2.7, ma prima o poi sarebbe il caso di passare a python 3. Quindi cerca di tenere la
|
||
|
compatibilità, se metti mano al codice python.
|