Browse Source

add template config

pull/3/head
Aaron Parecki 8 years ago
parent
commit
1b4751d6f9
2 changed files with 18 additions and 0 deletions
  1. +1
    -0
      .gitignore
  2. +17
    -0
      config.template.php

+ 1
- 0
.gitignore View File

@ -1,4 +1,5 @@
.DS_Store
vendor/
config.php
config.test.php
scripts/logs/

+ 17
- 0
config.template.php View File

@ -0,0 +1,17 @@
<?php
class Config {
public static $base = 'http://telegraph.dev/';
public static $ssl = false;
public static $secretKey = '000000000000000000000000000000000000000000000';
public static $clientID = 'http://telegraph.dev/';
public static $defaultAuthorizationEndpoint = 'https://indieauth.com/auth';
public static $db = [
'host' => '127.0.0.1',
'database' => 'telegraph',
'username' => 'root',
'password' => ''
];
}

Loading…
Cancel
Save