Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update app.js #8

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@

var config = {
// - Your app's id on moneypot.com
app_id: 18, // <----------------------------- EDIT ME!
app_id: 666, // <----------------------------- EDIT ME!
// - Displayed in the navbar
app_name: 'Untitled Dice',
app_name: 'BIT Dice',
// - For your faucet to work, you must register your site at Recaptcha
// - https://www.google.com/recaptcha/intro/index.html
recaptcha_sitekey: '6LfI_QUTAAAAACrjjuzmLw0Cjx9uABxb8uguLbph', // <----- EDIT ME!
redirect_uri: 'https://untitled-dice.github.io',
recaptcha_sitekey: '6Ld_lg4TAAAAAMWR85zUNZ_F-rxPFAaignrCEbNC', // <----- EDIT ME!
redirect_uri: 'http://www.bitdice.github.io',
mp_browser_uri: 'https://www.moneypot.com',
mp_api_uri: 'https://api.moneypot.com',
chat_uri: '//socket.moneypot.com',
// - Show debug output only if running on localhost
debug: isRunningLocally(),
// - Set this to true if you want users that come to http:// to be redirected
// to https://
force_https_redirect: !isRunningLocally(),
Expand Down
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<!doctype html>
<head>
<title>Untitled Dice</title>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="https://bootswatch.com/cyborg/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="custom.css" rel="stylesheet"> <!-- Recommendation: Put your CSS customizations in custom.css -->
</head>
Expand Down