project-hosting

Hosting an open source project at several sites [closed]

大兔子大兔子 提交于 2019-12-30 05:47:06
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . Say I had an open-source project which I wanted to try and generate some exposure for. Would it be considered unethical to set up a project entry for it on several sites such at github, sourceforge and google code, for example? This would be purely for giving it greater

Best way to read/edit/add to the googlecode wiki offline

旧巷老猫 提交于 2019-12-20 05:14:25
问题 I finally after too much of pondering started my project on googlecode. One of the best features I liked about googlecode was the revision control for wiki, where I can add/edit the wiki pages locally offline and then commit/push later. I have pulled the wiki to my local repository, is there any good googlecode-wiki-toolbar-attached editor for googlecode wiki, as from my knowledge evey wiki has its own syntax for writing. Or if someone is also using a local repository for wiki.code.google,

Google project hosting svn commit problem

岁酱吖の 提交于 2019-12-20 04:23:32
问题 When I try to commit my code with svn commit, it returns an error : svn: Commit failed (details follow): svn: Server sent unexpected return value (405 Method Not Allowed) in response to MKACTIVITY request for '/svn/!svn/act/acf5cd6f-e8d7-476e-a572-a61a5d293586' How can this be fixed? 回答1: Try switching to https looks like this is a bug in Google Code system, see Google Code Bug #1916 来源: https://stackoverflow.com/questions/4553861/google-project-hosting-svn-commit-problem

Should I use a software hosting solution for my personal projects?

…衆ロ難τιáo~ 提交于 2019-12-12 11:55:43
问题 Right now, I keep all of my projects on my laptop. I'm thinking that I shouldn't do this, but instead use a version control system and check them in/out from an external hosting repository (Google Code, SourceForge, etc). I see several benefits here - first, I don't have to worry about losing my code if my computer crashes and burns or my external HDD crashes and burns; second, I can share my code with the world and perhaps even get more help when I need it. Is this a good idea? If so, what

How to host a JSP website on a webserver?

久未见 提交于 2019-12-07 02:35:48
问题 I have a website developed mostly in HTML and JSP, and accessing a MySQL database. Having never put such a website online before, I wanted to know what are the steps needed to get it up and running online. I know there needs to be a web server. How do I host a JSP website online? 回答1: You want to install the web server yourself, or you want pay for a java host? Between the files, there is a web.xml file (probably in the WEB-INF folder). You need to take a look at it, it contains the webapp

Best way to read/edit/add to the googlecode wiki offline

一笑奈何 提交于 2019-12-02 07:26:36
I finally after too much of pondering started my project on googlecode. One of the best features I liked about googlecode was the revision control for wiki, where I can add/edit the wiki pages locally offline and then commit/push later. I have pulled the wiki to my local repository, is there any good googlecode-wiki-toolbar-attached editor for googlecode wiki, as from my knowledge evey wiki has its own syntax for writing. Or if someone is also using a local repository for wiki.code.google, what practice are they following for writing the document for online collaborations. After lot of

Project hosting sites that provide web site hosting

末鹿安然 提交于 2019-12-02 00:13:39
问题 I wish to start up an open source project and have been thinking about project hosting sites. I've been hearing suggestions to try something other than SourceForge. However, one thing SourceForge has that I haven't seen in other project hosts is its web site hosting. I would like to eventually set up a semi-professional, official site for regular people to visit and get my software. SourceForge's web space would make that easier. Are there any other project hosting services that provide such

Hosting an open source project at several sites [closed]

老子叫甜甜 提交于 2019-11-30 17:35:50
Say I had an open-source project which I wanted to try and generate some exposure for. Would it be considered unethical to set up a project entry for it on several sites such at github , sourceforge and google code , for example? This would be purely for giving it greater exposure. I realise there might be some practical reasons for doing this, such as wanting to use github for source control, and sourceforge for issue tracking, forums and such. For the sake if this question I'm wanting to focus more on the case where you use one of the sites as the main site for the project, and make "stub"

Using github to host public git repositories whilst ensuring that sensitive data files remain untracked

删除回忆录丶 提交于 2019-11-28 05:30:10
My app is hosted on Heroku and I have a public github repo too. My app has a config file containing my amazon S3 credentials. It's important to ensure that the file gets pushed to heroku but not github. So I was thinking that I could push my master branch to heroku and create a seperate github branch and ensure that it's .gitignore file references my s3.yml file. I could then just do "git push origin github:master" to push the github branch to github.com This works fine for the first commit. But then I switch to my master branch, write some awesome code and then push it all to heroku. I then

Using github to host public git repositories whilst ensuring that sensitive data files remain untracked

纵饮孤独 提交于 2019-11-27 01:02:53
问题 My app is hosted on Heroku and I have a public github repo too. My app has a config file containing my amazon S3 credentials. It's important to ensure that the file gets pushed to heroku but not github. So I was thinking that I could push my master branch to heroku and create a seperate github branch and ensure that it's .gitignore file references my s3.yml file. I could then just do "git push origin github:master" to push the github branch to github.com This works fine for the first commit.