South, fake migrations

Ako imaš tablicu koja je već u bazi i tek onda si napravio migraciju sa Southom moraš napraviti inicijalnu migraciju bez promjene i onda napraviti novu migraciju.
Kada se to sve odrati potrebno je “fejkati” inicijalnu migraciju (jer već postoji u bazi)

1. python manage.py schemamigration APP_NAME --initial
2. napravi promjenu u models.py
3. python manage.py schemamigration APP_NAME --auto
4. python manage.py migrate APP_NAME 0001 --fake
5. python manage.py migrate APP_NAME

ArchLinux – LXDE

#Install LXDE:

pacman -S openbox lxde gamin dbus   #Lxde and needed dependancies
pacman -S xorg-server xorg-xinit xorg-server-utils   #Xorg
pacman -S mesa xf86-video-fbdev xf86-video-vesa   #Video Drivers
#To use startx, you will need to define LXDE in your ~/.xinitrc file:
echo “exec ck-launch-session startlxde” >> ~/.xinitrc

autologin & autostart LXDE

cp /usr/lib/systemd/system/getty@.service /etc/systemd/system/autologin@.service

Then in /etc/systemd/system/autologin@.service add your login insted of USER:

ExecStart=-/sbin/agetty --noclear -a USER %I 38400

Then:

# systemctl daemon-reload
# systemctl disable getty@tty1
# systemctl enable autologin@tty1
# systemctl start autologin@tty1

Then:

cp /etc/skel/.bash_profile ~/.bash_profile

And then in this file add:

[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && exec startx