Just a readme file
Last active
June 8, 2019 14:44
-
-
Save nickpagz/b159a471a51c172f4f4600a6c2c7d513 to your computer and use it in GitHub Desktop.
Adding signalr route
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) | |
{ | |
// | |
// Omitted standard content for brevity... | |
// | |
app.UseSignalR(cfg => cfg.MapHub<FeedHub>("/feed")); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The base configuration for WordPress | |
* | |
* The wp-config.php creation script uses this file during the | |
* installation. You don't have to use the web site, you can | |
* copy this file to "wp-config.php" and fill in the values. | |
* | |
* This example only includes a small portion of the file you would normally get. | |
* | |
* @link https://codex.wordpress.org/Editing_wp-config.php | |
* | |
* @package WordPress | |
*/ | |
define( 'WP_DEBUG', true ); | |
if ( WP_DEBUG ) { | |
@error_reporting( E_ALL ); | |
@ini_set( 'log_errors', true ); | |
@ini_set( 'log_errors_max_len', '0' ); | |
define( 'WP_DEBUG_LOG', true ); | |
define( 'WP_DEBUG_DISPLAY', false ); | |
define( 'CONCATENATE_SCRIPTS', false ); | |
define( 'SAVEQUERIES', true ); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The base configuration for WordPress | |
* | |
* The wp-config.php creation script uses this file during the | |
* installation. You don't have to use the web site, you can | |
* copy this file to "wp-config.php" and fill in the values. | |
* | |
* This example only includes a small portion of the file you would normally get. | |
* | |
* @link https://codex.wordpress.org/Editing_wp-config.php | |
* | |
* @package WordPress | |
*/ | |
define( 'WP_DEBUG', true ); | |
if ( WP_DEBUG ) { | |
@error_reporting( E_ALL ); | |
@ini_set( 'log_errors', true ); | |
@ini_set( 'log_errors_max_len', '0' ); | |
define( 'WP_DEBUG_LOG', true ); | |
define( 'WP_DEBUG_DISPLAY', false ); | |
define( 'CONCATENATE_SCRIPTS', false ); | |
define( 'SAVEQUERIES', true ); | |
} | |
@nickpagz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment