2019-02-17 23:05:00 +01:00
|
|
|
Hackmeeting 2019
|
|
|
|
==================
|
|
|
|
|
|
|
|
Sources for Italian Hackmeeting 0x16 (2019) website.
|
|
|
|
|
|
|
|
|
|
|
|
HowTo
|
|
|
|
-------
|
|
|
|
|
|
|
|
So you want to contribute, nice!
|
|
|
|
|
|
|
|
```
|
2019-04-29 16:32:16 +02:00
|
|
|
mkvirtualenv -p `which python3` hackmeeting-website
|
2019-02-17 23:05:00 +01:00
|
|
|
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 publish` come spiegato prima: l'output ti informa di eventuali errori nei campi o
|
|
|
|
sovrapposizioni con altri talk, leggilo!
|
|
|
|
|
|
|
|
Hacking
|
|
|
|
---------
|
|
|
|
|
2019-02-17 23:26:56 +01:00
|
|
|
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.
|
2019-02-17 23:05:00 +01:00
|
|
|
|
|
|
|
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.
|