Changes between Version 17 and Version 18 of NewbieDeveloperSetup


Ignore:
Timestamp:
2013-12-12T19:57:21Z (10 years ago)
Author:
amontero
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewbieDeveloperSetup

    v17 v18  
    13131. Set up your OS. (I tinker a lot with mine so I maybe miss some). You have to [http://python.org/download/ install python in your OS] for tahoe to run. Most Linux  distributions have it in their software repositories.
    1414
    15 2. tahoe-lafs source code is hosted in git repositories [https://github.com/tahoe-lafs/tahoe-lafs/ on github]. Get git running in your machine. For Ubuntu just do this from a shell: sudo apt-get install git
     152. tahoe-lafs source code is hosted in git repositories [https://github.com/tahoe-lafs/tahoe-lafs/ on github]. Get git running in your machine. For Ubuntu just do this from a shell:
     16{{{
     17sudo apt-get install git
     18}}}
    1619
    17203. Get the code from the main repo [wiki:Dev#SourceCodeviarevisioncontrol this way]
     
    19224. IDE: Install [http://eclipse.org Eclipse] + [http://pydev.org PyDev] in your platform. You can start from a "classical" Eclipse install and add the "Software sites" URL http://pydev.org/updates. You can then go to 'Install new software' menu item and add PyDev from there.
    2023
    21 (to be continued...)
    22 5. (ToDo) Run the tests
     245. Hack as if there was no tomorrow :)
    2325
    24 6. ...
     266. Run the tests
     27{{{
     28 $ python setup.py trial
     29}}}
     307. Build and run
     31{{{
     32$ python setup.py build
     33$ python setup.py --help-commands  # TIP: run this for a complete list of options
     34}}}
    2535
    2636m. Learn to use the [source:trunk/docs/logging.rst logging system]