Github SQL Server installation - sql-server

I am new to github I understand it is aversion control repository for collaborative software development. I wish to however explore that can we also install software such as SQL Server or java in github repository so that it provides a complete platform. Actually I have developed a software tool that uses HTML5 D3 and SQL Server I want it to upload to a Github repository so that other can see a live demo. I'm not sure how to do this - please comment

Github will only host the source code itself and static html pages. Nothing is actually executed there. Basically a folder on a computer. Passive. You would need to use a cloud platform like gcp or aws to do what you are describing.

Related

Building workspace vs uploading cartridges in eclipse in code deployment over sandbox

I am deploying a code over sandbox from eclipse, I'm new to salesforce development.
what is the diff between building workspace and uploading cartridges in eclipse.
I appreciate all the help that i can get, thanks in advance
There are no "cartidges" in Salesforce documentation. Are you sure you're developing salesforce code? Maybe you're working on some Java integration? Or maybe you mean packages? zip files with package.xml and source code?
And Eclipse development model is outdated now, all the cool kids moved on to sfdx + visual studio code. What you're doing still works (it uses "metadata api") but you're consciously using old tools, depriving yourself from newer, faster toys. You can read more about metadata api style of deployments in https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_intro.htm
Now... If you ask about "why do I bother with doing deployments if in sandbox I can just edit the class/trigger directly and save"... well - you can't in production. You can't just go and edit code straight on production, even in the setup the button simply isn't there. It has to be a deployable package, it has to run unit tests during deploy (they need to pass, the code coverage has to be at least 75%). So you make a package when you're really ready to go to prod

Jenkins for C# Projects and Artefacts

after my last question about artefacts in an C# project, i´am using Nuget for my DLL´s, but with no "Snapshot" like system i use in Maven.
Are there any projects or tutorials about building an Build Pipeline with Jenkins as the Buildsystem and deploying Artefacts to an Artefact Server?
In our Java projects, i use Jenkins and Sonatype Nexus. Now i think i need Jenkins with msbuild and some kind of nuget server (atm it is just an file storage). Maybe, someone has done it already. I dont want to host an extra Team Foundation Server if i can avoid it.
Regards
Please go through this Stackoverflow thread setting-up-continuous-integration-and-continuous-deployment-for-microsoft-applications.
They also have the Java stack established with Jenkins and Nexus and wants to reuse the same tools to setup the CI/CD process for their Microsoft.Net applications.

How to deploy WPF Applications to client machines without a server?

I've created a wpf application. Now I need to make an application to download it from a web site to various client machines with no server software. What are the essential requirements that need to be installed from the web to the client in order for the application to work? I am very new to this and am learning as i go along
As stated by the others you may publish your application using clickonce. An alternative approuch is to use a third party installer like wise(yee old .msi is removed from newer visual studios). MS wants you to use clickonce for deployment it may be done manually using mage, through MageUI or visual studio directly. I only use mage.exe for deployment of WPF and XBAP applications, it's nice if you have a buildserver set up and all. Just make some scripts for the deployment that you may reuse, once deployed check your manifest file to see what's included and not.
General information about clickonce.
Mage.exe located in your windows sdk for manually deployment
MageUI, useless for any live production envirnoment...
Hope it helps you some, I know this can be a pain.
Cheers,
Stian

Leveraging Windows Azure with ClickOnce publishing

I have been developing a small C#/WinForm utility in my spare time and have got to the point where it's ready for release. My previous project was hosted via CodePlex which allowed me to update my source code and manually upload new versions via my computer.
I've recently recieved an MSDN subscription which gives me a fairly generous amount of usage/storage with Windows Azure.
This got me thinking, I know ClickOnce allows applications to be installed via the internet but would it be possible to do so whilst using Azure to host it?
I would like to think that this would allow me to update my application and push it to Azure whilst updating my source code on CodePlex via Team Foundation Server.
Does anybody have any experience in this? Is it something that can even be done?
Thanks for your time:)
Take a look at Kazi Nadudvari's Blog and see if this post helps:
How to deploy ClickOnce applications to Windows Azure?

open source blog like wordpress

I need open source blog, something like Wordpress. I have a limit, whichever is the only solution that runs on IIS and uses SQL Server Express. Any solutions for this problem??
Check out the Microsoft Web Platform. In among the dev tools, there's a bunch of free web applications, including a variety of blogs (notably blogengine.net) and full-fledged CMSes like DotNetNuke.
Update: And as a nod to #birryree's comment, note that the Web Platform includes Wordpress! :)

Resources