How To Compile Everything: Difference between revisions

no edit summary
imported>Geofft
No edit summary
imported>Paulproteus
No edit summary
 
(One intermediate revision by one other user not shown)
Line 9:
* Is it mostly Python?
** Is there a <code>setup.py</code>?
*** <code>pythonvirtualenv setup.py build<; bin/code>, <code>python setup.py installdevelop</code>, I think.
** Is there a <code>requirements.txt</code>?
*** Install the things there, maybe with pip or something??
Line 16:
* Is it mostly Ruby?
** Ask someone not me.
** Someone not me says:
*** Does it have a Gemfile, or a .gemspec? Run bundle.
*** Is it Rails? Run rake. (Did you bundle install?) Now do ./script/server (Rails 2.x) or rails server (Rails >=3). Consider making someone else host it - Heroku?
*** Is it not Rails? Does it have a Rakefile? Run rake.
*** No Rakefile? Are you sure this is ruby?
* Is it mostly Perl?
** Is there a <code>Makefile.PL</code> at the top level, and no <code>Makefile</code>?
Anonymous user