FreedomBox/Debugging: Difference between revisions

From Wiki
(Update command for debug mode)
(Restart BuildBot server after making changes)
Line 58: Line 58:
sudo -n -u postgres /bin/bash postgres
sudo -n -u postgres /bin/bash postgres
psql -d ttrss -U ttrss -h localhost
psql -d ttrss -U ttrss -h localhost
</pre>
====Restart BuildBot server after making changes====
This command should be run from the directory that contains the file ''master.cfg''
<pre>
buildbot checkconfig && (buildbot stop; buildbot upgrade-master; buildbot start)
</pre>
</pre>

Revision as of 04:58, 14 May 2019

Development and Debugging

start from scratch

vagrant destroy -f;
vagrant box remove freedombox/plinth-dev;
vagrant up;
vagrant provision


To uninstall diaspora

apt remove --purge diaspora diaspora-common && echo "delete from plinth_module where name='diaspora';" | sqlite3 /var/lib/plinth/plinth.sqlite3


To run in debug (autoreload) mode (doesn't work for files under actions/ folder)

sudo -u plinth /vagrant/run --develop 


To open a file in emacs as root@vagrant

mkdir /root/.ssh 
cp /home/vagrant/.ssh/authorized_keys /root/.ssh


Run only one test

./setup.py test -s plinth.modules.sso.tests.test_auth_pubtkt_util.TestAuthPubTKTUtil.test_create_key_pair


Vagrant box download for plinth-dev

wget -O ~/FreedomBox/plinth-dev.box https://app.vagrantup.com/freedombox/boxes/plinth-dev/versions/<version>/providers/virtualbox.box


To use the local box instead of downloading from repo

vagrant box add --name freedombox/plinth-dev <box name>


Turning off mac address randomization in Network Manager

Add this line to all files in /etc/NetworkManager/system-connections under wifi or ethernet or whatever.

mac-address-randomization=0


Login into ttrss Postgresql database

sudo -n -u postgres /bin/bash postgres
psql -d ttrss -U ttrss -h localhost


Restart BuildBot server after making changes

This command should be run from the directory that contains the file master.cfg

buildbot checkconfig && (buildbot stop; buildbot upgrade-master; buildbot start)