Граф коммитов

131 Коммитов

Автор SHA1 Сообщение Дата
Alexander Batishchev 9b0dc486f7 Fixing urls in README
* Replacing http with httpS
* Adding https:// to docs.cloudfoundry.org making the url absolute, not relative what doesn't work
2016-09-22 11:13:23 -07:00
Steel Toe Team 615a55ccdc Merge from SteelToeOSS/dev 2016-09-22 09:52:23 -04:00
Dave Goddard bc4a89a6b1 Rename files, SteelToe -> Steeltoe [#130554549]
Signed-off-by: Keaty Gross <kgross@pivotal.io>
Signed-off-by: Dave Goddard <dave@goddard.id.au>
2016-09-19 15:03:28 -04:00
Keaty Gross 86d5a0bfdd SteelToe -> Steeltoe [#130554549]
Signed-off-by: Dave Goddard <dave@goddard.id.au>
2016-09-19 10:24:26 -04:00
mkreibe 89010fe3f2 Added a sniffer for the PORT environment variable. This cleans up the need to do the following:
public static void Main(string[] args)
        {
            var host = new WebHostBuilder()
                .UseKestrel()
                .UseUrls(GetServerUrls(args))
                .UseContentRoot(Directory.GetCurrentDirectory())
                .UseIISIntegration()
                .UseStartup<Startup>()
                .Build();

            host.Run();
        }
        private static string[] GetServerUrls(string[] args)
        {
            List<string> urls = new List<string>();
            for (int i = 0; i < args.Length; i++)
            {
                if ("--server.urls".Equals(args[i], StringComparison.OrdinalIgnoreCase))
                {
                    urls.Add(args[i + 1]);
                }
            }
            return urls.ToArray();
        }

---------

 And simplifies it to just this:

        public static void Main(string[] args)
        {
            var host = new WebHostBuilder()
                .UseKestrel()
                .UseCloudFoundryHosting() // Added
                .UseContentRoot(Directory.GetCurrentDirectory())
                .UseIISIntegration()
                .UseStartup<Startup>()
                .Build();

            host.Run();
        }

It also make it so that the manifest.yml files are not poluted with values like the following:

  command: ./MusicStoreUI --server.urls http://*:%PORT%

and reduce it to:

  command: ./MusicStoreUI
2016-09-16 12:49:16 -06:00
Dave Tillman dccb3cb1f8 Update .NET Core install
Install process changed for latest OSX
2016-08-12 07:34:37 -06:00
mavenraven b81a483995 Merge pull request #2 from SteelToeOSS/dev
Dev
2016-07-20 09:48:15 -04:00
Dave Tillman 15796e640b Fixup travis build 2016-07-01 11:40:06 -06:00
Dave Tillman 62e0ced8a2 Fix travis build 2016-06-29 10:23:31 -06:00
Dave Tillman 0c10bca93d Updates for RTM 2016-06-29 09:57:59 -06:00
Dave Tillman 41ed1be3e9 Retry additions 2016-06-16 06:37:44 -06:00
Dave Tillman ad58886fa9 Fix exception logging 2016-06-01 14:32:23 -06:00
Dave Tillman 6540804b34 Readme updates 2016-05-31 10:39:54 -06:00
Dave Tillman 2b6564e620 tweak project.json 2016-05-28 08:11:42 -06:00
Dave Tillman 2739f33e45 Provider Build() method virtual, Polish 2016-05-27 07:02:57 -06:00
Dave Tillman 01429adca8 Use correct framework in travis_test 2016-05-26 13:02:46 -06:00
Dave Tillman 4992281293 Add platform check for winhttphandler usage 2016-05-26 12:51:39 -06:00
Dave Tillman 60069013f7 Fix travis scripts 2016-05-26 12:35:19 -06:00
Dave Tillman 32e2bf3b1c Updates for RC2 2016-05-26 12:22:43 -06:00
Dave Tillman 4436069c9a Remove build cache 2016-05-10 16:19:16 -06:00
Dave Tillman a0f97f492e Fix version numbering 2016-05-10 14:06:30 -06:00
Dave Tillman 885736e459 Move samples to Samples repo 2016-04-29 14:10:37 -06:00
Dave Tillman fa4fc10d0e Readme updates
[Skip ci]
2016-04-29 14:03:22 -06:00
Dave Tillman ad2605ffe1 Readme updates
[Skip CI]
2016-04-29 06:40:42 -06:00
Dave Tillman c7b09c5393 Update readmes
[skip ci]
2016-04-25 13:42:01 -06:00
Dave Tillman afc290ca34 Update readme
[Skip ci]
2016-04-25 09:24:43 -06:00
Dave Tillman 789e833feb Update travis scripts 2016-04-20 07:17:14 -06:00
Dave Tillman b65f6f414a Update Readme
[Skip ci]
2016-04-20 06:48:22 -06:00
Dave Tillman 5ac2123905 Update Readme
[skip ci]
2016-04-20 06:46:12 -06:00
Dave Tillman 65bd2f6929 Update appveyor_build 2016-04-19 06:55:49 -06:00
Dave Tillman 741fe27dfe chmod travis scripts 2016-04-18 08:12:30 -06:00
Dave Tillman 954f9db5b6 Merge remote-tracking branch 'refs/remotes/origin/master' into dev 2016-04-18 07:50:01 -06:00
Dave Tillman 1d15c4179a Update appveyor.yml 2016-04-18 07:20:30 -06:00
Dave Tillman 765962152e Another typo 2016-04-18 07:13:45 -06:00
Dave Tillman 4cb3ed83fa Fix appveyor typo 2016-04-18 07:10:45 -06:00
Dave Tillman 66cb243c93 Initial CI checkin 2016-04-17 08:12:33 -06:00
Kevin Hoffman 3917fc6df1 Update README.md 2016-04-15 09:18:03 -04:00
Kevin Hoffman e450feea5b Removing version number from steeltoe dependency. Temporary ugliness awaiting RC2 refactors. 2016-04-15 09:12:14 -04:00
Dave Tillman 6519431e0d Ensure xunit tests are not parallelized 2016-04-07 12:29:14 -06:00
Dave Tillman 3addf4156c Work around unit test hang on Linux 2016-04-07 10:06:17 -06:00
Dave Tillman d6d9a19473 Polish test 2016-04-05 08:18:50 -06:00
Dave Tillman e1d3af6eb5 Naming refactor 2016-03-08 09:29:06 -07:00
Dave Tillman 81b9dcb5e4 Polish comments 2016-02-27 10:52:38 -07:00
Dave Tillman 38102e2507 Add extension method AddConfigServer to IServiceCollection
Convenience method to enable DI of various Config Server client
components.
2016-02-26 13:47:19 -07:00
Dave Tillman 1f4bea817f Fix typo in Asp.Net 4.5 Sample app (Simple4) 2016-02-19 14:01:58 -07:00
Dave Tillman e9bae8097b Add a ASP.NET 4.5 sample using Spring Cloud Config Server 2016-02-19 08:33:23 -07:00
Dave Tillman fd3518a7de Polish 2016-02-19 06:09:18 -07:00
Dave Tillman a095f92d47 Add Basic Authorization to client 2016-02-03 11:17:07 -07:00
Dave Tillman d0d3bc715b Add support for comma delimited labels as supported in java client 2016-02-03 08:48:57 -07:00
Dave Tillman e4332220f1 Add failFast client support
Added code to throw ConfigServerException if failFast is enabled
2016-02-03 07:44:40 -07:00