Example #1
0
        public void Set_Env_From_File_Google_Books_Api_Key()
        {
            var envConfigurator = new EnvConfigurator(JsonIOMock);

            envConfigurator.SetEnvFromFile("./", "env.json");
            var googleApiKey = Environment.GetEnvironmentVariable("fd_GoogleBooksApiKey");

            Assert.NotNull(googleApiKey);
            Assert.AreEqual("mock_key", googleApiKey);
        }
Example #2
0
        public void Set_Env_From_File_Log_Directory()
        {
            var envConfigurator = new EnvConfigurator(JsonIOMock);

            envConfigurator.SetEnvFromFile("./", "env.json");
            var logDirectory = Environment.GetEnvironmentVariable("fd_LogFilePath");

            Assert.NotNull(logDirectory);
            Assert.AreEqual("/logs/fifth-dimension/logs.log", logDirectory);
        }
Example #3
0
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }

            app.UseHttpsRedirection();
            app.UseStaticFiles();
            app.UseSpaStaticFiles();

            app.UseRouting();

            app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller}/{action=Index}/{id?}");
            });

            app.UseSpa(spa =>
            {
                spa.Options.SourcePath = "ClientApp";

                if (env.IsDevelopment())
                {
                    spa.UseReactDevelopmentServer(npmScript: "start");
                }
            });


            var envConfigurator = new EnvConfigurator(new JsonIO());

            envConfigurator.SetEnvFromFile("./", "env.json");
        }