Links:

Reference & Intro:

  da_dev compile file.name.ext

  da_dev watch
  da_dev watch reload

  da_dev watch run-file myfile.1.txt
  da_dev watch run-file myfile.2.txt

  da_dev watch proc sleep 10

  da_dev watch run-last-file

  da_dev watch run my_cmd with -args
  da_dev watch run __ with -args

For watch files:

  reset
  clear
  bin compile
  run my process
  proc my long running process
  # bin compile
  PING

Postgresql Development:

The following are for development purposes only.

  sudo -u postgres psql -U postgres
  sudo -u postgres createuser $USER \
    --connection-limit=3      \
    --no-createdb             \
    --no-createrole           \
    --no-superuser            \
    --encrypted               \
    --login

  sudo -u postgres createdb  --owner=$USER my_db_name