configuration 549 B

123456789101112131415161718192021222324252627282930313233343536
  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.c';
  18. //temp repo
  19. $temprepo = "temprepo/";
  20. //email from
  21. $frommail = "ccan@ozlabs.org";
  22. //email for admins
  23. $ccan_admin = "g.dinesh.cse@gmail.com";
  24. $ccan_home_dir = "ccan/";
  25. ?>