beanstalk

Beanstalk like Functionality

I'm finally getting my team to embrace source code management now that we're working on projects where more than one dev is touching the same codebase, and I setup a free/trial account on Beanstalk for hosted Subversion so people could get a taste of how it works. That said, we've discussed a somewhat ambitious plan to put a lot of need...

Codeplex + SVN. How good is SVN bridge?

I avoided CodePlex because of it's lack of support for proper SVN and was dissuaded by complaints about short comings. Recently, I have been wanting to port my project from beanstalk over to codeplex because the latter is more social. What problems have you encountered and how good is the support for SVN. How good is the SVN bridge? ...

How to deploy Subversion externals?

We're testing the waters with SVN, with Beanstalk as a host. Our setup looks something like this: Repository: Modules Module 1 Module 2 Module 3 Repository: Website 1 Custom website code svn:External reference to Module 1 svn:External reference to Module 2 Repository: Website 2 Custom website code svn:External reference to Modu...

Which Bug Tracking tools can Beanstalk work with?

Which Bug Tracking tools can Beanstalk work with? e.g. so that when I check in code, I can mark it with a bug reference and it will cross-reference for me. edit: also interested in tools that can potentially be integrated using Beanstalks Web hooks feature. ...

Adding authentication to beanstalkd from Python (or any UNIX) client

So what I like about beanstalkd: small, lightweight, has priorities for messages, has a great set of clients, easy to use. What I dislike about beanstalkd: the lack of authentication menaing if you can connect to the port you can insert messages into it. So my thoughts are to either firewall it to trusted systems (which is a pain to ...

A way to specify a different host in an SSH tunnel from the host in use

I am trying to setup an SSH tunnel to access Beanstalk (to bypass an annoying proxy server). I can get this to work, but with one caveat: I have to map my Beanstalk host URL (username.svn.beanstalkapp.com) in my hosts file to 127.0.0.1 (and use the ip in place of the domain when setting up the tunnel). The reason (I think) is that I am...

beanstalkd interface/GUI

Does anyone know of any interface to administer beanstalkd? What I'm looking for vaguely is something like PhpMyAdmin for MySQL. Doesn't have to be PHP or web-based, could be any interface, GUI ..etc ...

Setting Up FTP user accounts on Debian Lenny for Beanstalk

I'm trying to set up an FTP account on my server which is running a Debian install and proftpd. I'm in need of some basic commands that will allow me to view, edit, create ftp users. I'm also not clear on whether I need to then add these users specifically to proftpd or if just having them on the server is enough. Ultimately, I'd like t...

Is there any decent git repository manager that's downloadable?

I want to host git repos on my server, but still have a nice tool to manage them, such as Beanstalk or Assembla. Does anyone know of a similar tool which is downloadable (Other than Assembla private)? Security and reliability concerns won't allow for hosted solutions. ...

svn without local copy

I'm in this kind of situation: i'm working with a remote developer on a cakephp website. He works on a local copy (php etc..) and updates a staging server. I usually do directly the edits (mainly css and text changes) on the remote staging server because I can't run a local copy of the website. What do you suggest for a SVN environment...

Git and Beanstalk

Hello, I'm experimenting with Git... I've found Beanstalkapp suits my needs. I've created individual repositories for EACH client on Beanstalk and then pushed all the files from a machine at work. I've created repositories for each client and my Beanstalk account now looks like this: Client One (repository)<br> --a load of files and f...

configuration files in version control while deploying

I have a particular problem with config files and deployment. When I deploy my project, it eventually moves to two different branches: staging and production (using SVN here) I make the branch from my local working copy of the project. What this ends up doing is overwriting staging and development's copy of the config files, so I manual...

Inspiration for a beanstalkd GUI

I've been trying to find a decent beanstalkd GUI with no luck at all. I decided to write my own. I'm thinking of doing something totally AJAXy where you can see everything in one page, list tubes, see jobs in a tube, flash charting maybe ...etc I'm terrible with UI, so I was wondering if anyone can recommend some examples that are relev...

EGit + Beanstalk - Auth Fail

I have Eclipse 3.5 and EGit 0.9.3 installed. Gitbash can authenticate fine to Beanstalk, but for some reason Eclipse gives me Auth Failed when I try to import/clone a repo into Eclipse. Also, I don't seem to have git+ssh as a protocol option - why is that? I have copied my files from .ssh to ssh as some other posts have indicated but it...

Show the latest commit value within a web application?

Hi Everyone, I have a few Rails applications and I use Git as the version control system. I use either GitHub or Beanstalk as the repository hosts. What I am trying to is quite simple in theory. Somehow show the latest commit ID number (hash?) in the footer of the web application. So that when I am looking at the web application I can...