Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions site/pages/dev/source-code.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
Title: Source Code

## pySTeVe
PySTeVe can be browsed via the [web interface](https://github.com/apache/steve).

You can check out the source code at: [https://github.com/apache/steve/tree/trunk/pysteve](https://github.com/apache/steve/tree/trunk/pysteve):

`git clone https://github.com/apache/steve.git`

PySTeVe requires no building/compiling, but does require a setup, as explained on the [try it out](/demo.html) page.


## Older sources
You can browse the source code via the [web interface](http://svn.apache.org/viewvc/steve/trunk/)
.

You can download (aka checkout) the sources of Apache STeVe with
Subversion client using the following URL [http://svn.apache.org/repos/asf/steve/trunk](http://svn.apache.org/repos/asf/steve/trunk)
.

Performing the checkout from the command line using the subversion client
is as easy as executing the following command:
> $ svn co [http://svn.apache.org/repos/asf/steve/trunk](http://svn.apache.org/repos/asf/steve/trunk)

If you are experiencing problems with errors like "400 Bad Request
(http://svn.apache.org)", try using:
> $ svn co [https://svn.apache.org/repos/asf/steve/trunk](https://svn.apache.org/repos/asf/steve/trunk)

<a name="SourceCode-Continuousintegration"></a>
# Continuous integration

Apache STeVe continuous integration relies on [Apache Buildbot](http://ci.apache.org/).
All builders are available [from the page](http://ci.apache.org/builders).

* [Apache STeVe under Ubuntu](http://ci.apache.org/builders/steve-trunk-ubuntu)
* [Apache STeVe under Windows](http://ci.apache.org/builders/steve-trunk-win)

<a name="SourceCode-Building"></a>
# Building

*TODO fill in*

Loading