appharbor

Push to multiple remote repositories from a single local repo in Mercurial

纵饮孤独 提交于 2019-12-03 04:23:06
I was considering using AppHarbor to host a lightweight website and was investigating their Mercurial integration. Currently I use Kiln for my remote repositories, but currently AppHarbor only supports BitBucket integration. Is it possible to have 2 remote repositories for a single local repository? So when I push commits from my local, they both get the push? I don't ever want to pull from BitBucket, only push so that it can then be grabbed by AppHarbor and deployed. You can set multiple remote repository aliases in the [paths] section of the repository configuration file. This file is in .hg

How do I improve app performance on AppHarbor? [closed]

心已入冬 提交于 2019-12-02 17:59:49
I have an application hosted on AppHarbor that is visited a few times a day with a light load. The performance experience is a SLOW first page load as the dormant worker process wakes up. Subsequent page loads are fast. I want to reduce the amount of time for the initial load. Will buying additional instances solve this issue, or should I look towards a dedicated host You app pool will be spun down after 20 minutes of inactivity, this is standard IIS behaviour. To avoid this, you can upgrade from Canoe to either the Catamaran or Yacht plans. Web apps on those plan don't idle (adding a custom

appharbor connection string

喜夏-厌秋 提交于 2019-12-02 12:02:59
I'm building an ASP.NET MVC3 application that requires access to a database. I've successfully set up the database on my local machine and everything works fine but then I uploaded the app to appharbor.com for testing and now I can't access the database anymore. How do you add a connection string for a SQLEXPRESS database on appharbor.com? The database file is in located in the App_Data folder. I've been trying for days to make it work without avail. I already added the SQL Server add-on on appharbor. I'm not using any Entity Framework features if it helps to know. You shouldn't use

Error in deleting/addind file from appharbor using git “Unable to create 'f:/git/xyz/WorkerProcess/.git/index.lock': File exists”

白昼怎懂夜的黑 提交于 2019-12-02 10:20:10
I want delete bin[or trying to run $git add .] from local git hub folder as well as on hosted app-harbor folder but i am unable to delete folder and getting following error $ git rm -r bin [ $ git rm -f bin] fatal: Unable to create 'f:/git/xyz/WorkerProcess/.git/index.lock': File exists. If no other git process is currently running, this probably means a git process crashed in this repository earlier. Make sure no other git process is running and remove the file manually to continue. It works for me : $ git clean -f .git/index.lock Removing .git/index.lock comp1@SHAILESH01 /f/git/xyz

Pushing an existing svn repository to git

佐手、 提交于 2019-12-02 07:16:09
I'm using SVN and I'm not planning to migrate to Git for now. I'd like to try out AppHarbor but currently you must use Git to deploy code to AppHarbor. I'd like to continue using SVN but push to AppHarbor's git repository from time to time. Is there an easy way to achieve this? You can create a git clone of your SVN repository with: git svn clone --stdlayout <URL-OF-YOUR-SVN-REPOSITORY> ... and keep that up to date by periodically running: git svn rebase ... in the directory created by the git svn clone . You can then push from that git mirror of your Subversion repository to AppHarbor. 来源:

appharbor: thirdy party .dll and GAC referenced .dll

空扰寡人 提交于 2019-12-01 12:41:49
1.We are using Appharbor for my client app having number of third party .dll files(for SMS and Email) and some of them we referencing form GAC. some of them we put into /bin folder and referencing form that folder (we set Local Copy = True for .dll file) I want best way to handle GAC and other third party .dll maintain in appharbor. If i need to put that .dll in /bin or any other folder which is in project. Give me the way to handle Physical file in apphabor / or using CDN. Give me the way to use dedicated sql server in appharbor Prasad Phule Instead bin deployment , i go through another way.

appharbor: thirdy party .dll and GAC referenced .dll

女生的网名这么多〃 提交于 2019-12-01 11:16:36
问题 1.We are using Appharbor for my client app having number of third party .dll files(for SMS and Email) and some of them we referencing form GAC. some of them we put into /bin folder and referencing form that folder (we set Local Copy = True for .dll file) I want best way to handle GAC and other third party .dll maintain in appharbor. If i need to put that .dll in /bin or any other folder which is in project. Give me the way to handle Physical file in apphabor / or using CDN. Give me the way to

Hosting a WCF Web API app on AppHarbor?

纵然是瞬间 提交于 2019-11-30 13:27:32
I've implemented a sample app like the one here . It is a really basic app just to get things started. Everything works fine in IIS on my local machine, I've got it running on my IIS Express as well, but now come the tricky part. I do want to host this on AppHarbor , but I get 404 error. I've started a discussion on the support forum of AppHarbor, and they have taken a screen shot of the error when they run it. It seems like it is something wrong with the routing since the StaticFile handler is used, but I'm just guessing. Does anyone have any suggestions? Try and add <system.webServer>

unable to locate nuget.exe when building webservice on appharbor

▼魔方 西西 提交于 2019-11-29 21:10:25
I'm trying to deploy my webservice at appharbor using codeplex. After trying it the first time and doing some research I found out that I had to use NuGet so the references are being found.. Now I only have 1 error left which I don't know how to solve "D:\temp\g3wyilvx.uln\input\WebService\Webservice.sln" (default target) (1) -> "D:\temp\g3wyilvx.uln\input\WebService\Webservice\Webservice.csproj" (default target) (2) -> (CheckPrerequisites target) -> D:\temp\g3wyilvx.uln\input\WebService\.nuget\nuget.targets(72,9): error : Unable to locate 'D:\temp\g3wyilvx.uln\input\WebService\.nuget\nuget

Entity Framework EF4.1 - stored procedure “could not be found in the container”

余生长醉 提交于 2019-11-29 19:56:22
问题 I have a SP in my database. For EF4.1, using the DbContext API. After importing the function from the data model, references to the stored procedure works fine in my development environment. But when published to the server, it fails with a message like: The FunctionImport 'SqlSearch' could not be found in the container 'TallyJ2Entities'. All other data access is working fine. It seems that in production, some aspects of the EF4 configuration are forgotten. The databases are identical, and