2018-04-12 19:05:28 +02:00
|
|
|
Hackmeeting 2018
|
|
|
|
==================
|
|
|
|
|
|
|
|
Sources for Italian Hackmeeting 0x15 (2018) website.
|
|
|
|
|
|
|
|
|
|
|
|
HowTo
|
|
|
|
-------
|
|
|
|
|
|
|
|
So you want to contribute, nice!
|
|
|
|
|
|
|
|
```
|
|
|
|
mkvirtualenv hackmeeting-website
|
|
|
|
pip install -r requirements.txt
|
|
|
|
make
|
|
|
|
firefox output/index.html
|
|
|
|
```
|
|
|
|
|
|
|
|
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 publish` come spiegato prima: l'output ti informa di eventuali errori nei campi o
|
|
|
|
sovrapposizioni con altri talk, leggilo!
|
2018-07-01 13:07:26 +02:00
|
|
|
|
|
|
|
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 dal prossimo anno si potrebbe passare a python 3. Quindi cerca di tenere la
|
|
|
|
compatibilità, se metti mano al codice python.
|