Permalink
Browse files

exclude sensitive information

  • Loading branch information...
1 parent f59e088 commit f8b9af6749fcc29f1d93bf967fbc1682bdb560e1 @bianjiang committed Oct 18, 2013
Showing with 32 additions and 30 deletions.
  1. +2 −0 .gitignore
  2. +0 −30 tests/config.json
  3. +30 −0 tests/config_sample.json
View
@@ -1,5 +1,7 @@
# Created by http://gitignore.io # Created by http://gitignore.io
+config.json
+
### Python ### ### Python ###
*.py[cod] *.py[cod]
View
@@ -1,30 +0,0 @@
-{
- "apikeys": {
- "i0mf0rmer01" :{
- "app_key":"YZ43AjRJVEEu7vxj4k5Zg",
- "app_secret":"iJUmmTgPm4ZU7gxNCazatxx3VC5oRzUEI2BOLjgED0",
- "oauth_token":"1936968966-2avAkF0e2LClKsDf1AQS9o6x3sQkMHYg41ovRMm",
- "oauth_token_secret":"FUI816A2A1sSpL8q4Y53yqiTLHVQgcSh3WIHnNUmpA"
- },
- "i0mf0rmer02" :{
- "app_key":"QFzw7GJ8Oiz1ue0wUn1ZQg",
- "app_secret":"TyiAt3zuQbgqrFAdmXJl2G0zdT05TuiAhTdwzXH0",
- "oauth_token":"1946931948-P66BhnJJw3gti8v30LeSaz7yGC2mP8G0VcCj05s",
- "oauth_token_secret":"EhPhP0xXETxzuh6pS2hfupJg4nGhZZnzRWDo6X0mE"
- },
- "i0mf0rmer03" :{
- "app_key":"UREFgTupN8euVwMLXxRGKg",
- "app_secret":"FUxHixvkmk4Lxux64DBva1obfkAh10UuMxwXOD8",
- "oauth_token":"1948122342-uMqlGB7t8xXLcM69CrO9KWiABVdMtW8MKAKAPTv",
- "oauth_token_secret":"papLkhKwUKS2qZzIYYeKfmDNIxvX4QJHk7kJTIykPdbNx"
- }
- },
- "redis_config": {
- "host": "localhost",
- "port": 6379,
- "db": 0,
- "password": "iloveusm"
- },
- "verbose": "True",
- "output": "./data"
-}
View
@@ -0,0 +1,30 @@
+{
+ "apikeys": {
+ "i0mf0rmer01" :{
+ "app_key":"CONSUMER_KEY",
+ "app_secret":"CONSUMER_SECRET",
+ "oauth_token":"ACCESS_TOKEN",
+ "oauth_token_secret":"ACCESS_TOKEN_SECRET"
+ },
+ "i0mf0rmer02" :{
+ "app_key":"CONSUMER_KEY",
+ "app_secret":"CONSUMER_SECRET",
+ "oauth_token":"ACCESS_TOKEN",
+ "oauth_token_secret":"ACCESS_TOKEN_SECRET"
+ },
+ "i0mf0rmer03" :{
+ "app_key":"CONSUMER_KEY",
+ "app_secret":"CONSUMER_SECRET",
+ "oauth_token":"ACCESS_TOKEN",
+ "oauth_token_secret":"ACCESS_TOKEN_SECRET"
+ }
+ },
+ "redis_config": {
+ "host": "localhost",
+ "port": 6379,
+ "db": 0,
+ "password": "iloveusm"
+ },
+ "verbose": "True",
+ "output": "./data"
+}

0 comments on commit f8b9af6

Please sign in to comment.