Skip to content

Commit fd8bf15

Browse files
committed
license
1 parent e773fde commit fd8bf15

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

LICENSE

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2018 - Dave Daggett http://ddaaggeett.xyz
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

backend/config.js.example

+13
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,16 @@ export const google = {
1010
clientSecret: 'PASTE_CLIENT_SECRET_HERE',
1111
callbackURL: 'http://localhost:3000/auth/google/callback',
1212
};
13+
14+
export const github = {
15+
clientID: 'PASTE_CLIENT_ID_HERE',
16+
clientSecret: 'PASTE_CLIENT_SECRET_HERE',
17+
callbackURL: 'http://localhost:3000/auth/github/callback',
18+
};
19+
20+
export const db_host = '127.0.0.1'
21+
export const db_port = 28015
22+
export const db = 'rnAuthTest'
23+
export const tables = {
24+
"users": "users",
25+
}

0 commit comments

Comments
 (0)