configuration 680 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. //path for db
  3. $db = "db/ccan.db";
  4. //path for repository
  5. $repopath = "testrepo/";
  6. //ccanlint
  7. $ccanlint = "tools/ccanlint -d ";
  8. //infotojson
  9. $infotojson = "../../tools/infotojson ";
  10. //create tar of all dependencies
  11. $create_dep_tar = "../../tools/create_dep_tar ";
  12. //junk code
  13. $junkcode = "junkcode/";
  14. //temp folder
  15. $tempfolder = "temp/";
  16. //infofile
  17. $infofile = '/_info';
  18. //temp repo
  19. $temprepo = "temprepo/";
  20. //email from
  21. $frommail = "ccan@ozlabs.org";
  22. //ccan home
  23. $ccan_home_dir = "ccan/";
  24. //bzr clone
  25. $bzr_clone = 'bzr clone /home/dinesh/testwebsite/ ';
  26. //bzr push
  27. $bzr_push = 'bzr push /home/dinesh/testwebsite/ ';
  28. //tar home dir
  29. $tar_dir = 'tarball/';
  30. ?>