Skip to content
Movimento5StelleDevelopment edited this page Apr 2, 2013 · 5 revisions

Welcome to the liquidroid wiki!

This is a fork of the LiquidDroid project: https://github.com/koppi/liquidroid

Per i collaboratori:

Procedura per Collaborare (Fork & Pull Model):

  • Fare un fork
  • clonarlo in Locale (sul vostro computer) in un branch master
  • fare le modifiche in Locale in un branch sviluppo
  • aggiornare la propria Locale facendo un pull dell'ultima versione Master (o Test) del main repository
  • fare il merge in locale del branch sviluppo e del branch master aggiornato e risolvere i conflitti
  • fare il push nel vostro fork su github della versione fixata che ora avete nel branch master Locale
  • fare la pull request del vostro fork github al main repository github

Per ulteriori informazioni: https://help.github.com/articles/using-pull-requests

Debug SQL

Quando lavorate in debug con il DB Postgre SQL dovete sempre abilitare il LOGGING di tutte le transazioni, così che potere controllare il file log ogni volta che premete un bottone per vedere se la transazione è stata effettuata senza errori.

ECCO LA PROCEDURA PER ABILITARLO:

  1. In your data/postgresql.conf file, change the log_statement setting to 'all'.

  2. make sure you have turned on the log_destination variable

  3. make sure you turn on the logging_collector

  4. also make sure that pg_log actually exists relative to your data directory, and that the postgres user can write to it.

Clone this wiki locally