This file contains 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
just before the comment that says /* That's all, stop editing! Happy blogging. */ | |
// Assuming WP is in the root folder, adjust if not | |
define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST']); | |
define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST']); | |
define('WP_CONTENT_DIR', $_SERVER['DOCUMENT_ROOT'] . '/wp-content'); | |
$domain = $_SERVER[HTTP_HOST]; | |
This file contains 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 configurations of the WordPress. | |
* | |
* This file has the following configurations: MySQL settings, Table Prefix, | |
* Secret Keys, WordPress Language, and ABSPATH. You can find more information | |
* by visiting {@link http://codex.wordpress.org/Editing_wp-config.php Editing | |
* wp-config.php} Codex page. You can get the MySQL settings from your web host. | |
* | |
* This file is used by the wp-config.php creation script during the |
This file contains 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
source :rubygems | |
gem 'sinatra' | |
gem 'compass' | |
gem 'haml' | |
gem 'sass' | |
gem 'rake' | |
gem 'data_mapper' | |
gem 'dm-core' | |
gem 'dm-postgres-adapter', :group => :production |
This file contains 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
source :rubygems | |
source "http://rubygems.org" | |
gem 'bundler' | |
gem 'sinatra' | |
gem 'compass' | |
gem 'haml' | |
gem 'sass' | |
gem 'rake' | |
gem 'data_mapper' |