new credential added + template
This commit is contained in:
parent
a38049eb00
commit
b02a7abc4d
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,4 @@
|
|||||||
res/
|
res/
|
||||||
data/
|
|
||||||
.luarocks
|
.luarocks
|
||||||
*.db
|
*.db
|
||||||
plugins/alive.lua
|
plugins/alive.lua
|
||||||
|
@ -225,16 +225,22 @@ function create_cred( )
|
|||||||
derpibooru_apikey = "",
|
derpibooru_apikey = "",
|
||||||
fb_access_token = "",
|
fb_access_token = "",
|
||||||
gender_apikey = "",
|
gender_apikey = "",
|
||||||
|
google_apikey = "",
|
||||||
|
google_cse_id = "",
|
||||||
instagram_access_token = "",
|
instagram_access_token = "",
|
||||||
lyricsnmusic_apikey = "",
|
lyricsnmusic_apikey = "",
|
||||||
neutrino_userid = "",
|
neutrino_userid = "",
|
||||||
neutrino_apikey = "",
|
neutrino_apikey = "",
|
||||||
page2images_restkey = "",
|
page2images_restkey = "",
|
||||||
soundcloud_client_id = "",
|
soundcloud_client_id = "",
|
||||||
|
superfeedr_authorization = "=",
|
||||||
tw_consumer_key = "",
|
tw_consumer_key = "",
|
||||||
tw_consumer_secret = "",
|
tw_consumer_secret = "",
|
||||||
tw_access_token = "",
|
tw_access_token = "",
|
||||||
tw_access_token_secret = ""
|
tw_access_token_secret = "",
|
||||||
|
x_mashape_key = "",
|
||||||
|
yandex_translate_apikey = "",
|
||||||
|
yandex_rich_content_apikey = ""
|
||||||
}
|
}
|
||||||
serialize_to_file(cred, './data/credentials.lua')
|
serialize_to_file(cred, './data/credentials.lua')
|
||||||
print ('saved credentials into ./data/credentials.lua')
|
print ('saved credentials into ./data/credentials.lua')
|
||||||
|
55
data/credentials.lua
Normal file
55
data/credentials.lua
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
--This is an example
|
||||||
|
do local _ = {
|
||||||
|
-- Bitly
|
||||||
|
bitly_access_token = "",
|
||||||
|
|
||||||
|
-- Cloudconvert
|
||||||
|
cloudconvert_apikey = "",
|
||||||
|
|
||||||
|
-- Derpibooru
|
||||||
|
derpibooru_apikey = "",
|
||||||
|
|
||||||
|
-- Facebook
|
||||||
|
fb_access_token = "",
|
||||||
|
|
||||||
|
-- Gender-API
|
||||||
|
gender_apikey = "",
|
||||||
|
|
||||||
|
-- Google
|
||||||
|
google_apikey = "",
|
||||||
|
google_cse_id = "",
|
||||||
|
|
||||||
|
-- Instagram
|
||||||
|
instagram_access_token = "",
|
||||||
|
|
||||||
|
-- Lyricsnmusic
|
||||||
|
lyricsnmusic_apikey = "",
|
||||||
|
|
||||||
|
-- Neutrino-API (IP-Info)
|
||||||
|
neutrino_userid = "",
|
||||||
|
neutrino_apikey = "",
|
||||||
|
|
||||||
|
-- Page2Images
|
||||||
|
page2images_restkey = "",
|
||||||
|
|
||||||
|
-- Soundcloud
|
||||||
|
soundcloud_client_id = "",
|
||||||
|
|
||||||
|
-- Superfeedr
|
||||||
|
superfeedr_authorization = "=",
|
||||||
|
|
||||||
|
-- Twitter
|
||||||
|
tw_consumer_key = "",
|
||||||
|
tw_consumer_secret = "",
|
||||||
|
tw_access_token = "",
|
||||||
|
tw_access_token_secret = "",
|
||||||
|
|
||||||
|
-- X-Mashape-Key
|
||||||
|
x_mashape_key = "",
|
||||||
|
|
||||||
|
-- Yandex
|
||||||
|
yandex_translate_apikey = "",
|
||||||
|
yandex_rich_content_apikey = ""
|
||||||
|
}
|
||||||
|
return _
|
||||||
|
end
|
Reference in New Issue
Block a user