Skip to content

Instantly share code, notes, and snippets.

View agdiaz's full-sized avatar
👋
Hello world!

Adrián Diaz agdiaz

👋
Hello world!
View GitHub Profile
@staltz
staltz / introrx.md
Last active October 31, 2024 08:41
The introduction to Reactive Programming you've been missing
@chappyhome
chappyhome / gist:7117899
Created October 23, 2013 12:39
Move django from SQLite to MySQL
When you start develop new site, you may run from little one with tiny database.
For django best start from sqlite and after some time, if you project begin grow you move to more serious database engine (MySQL, Postgre SQL etc).
Sadly, django does not have any ready tools to move from one to another database.
You may try
python ./manage.py dumpdata > data.json
and
python ./manage.py loaddata data.json