rename scripts
This commit is contained in:
parent
4972623400
commit
ccdaf7ba31
2 changed files with 65 additions and 0 deletions
14
_check-for-fauna-key.js
Normal file
14
_check-for-fauna-key.js
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
const chalk = require('chalk')
|
||||||
|
if (!process.env.FAUNADB_SECRET) {
|
||||||
|
console.log('Please set supply a faunaDB server key')
|
||||||
|
console.log(`
|
||||||
|
=========================
|
||||||
|
|
||||||
|
In your terminal run the following command
|
||||||
|
|
||||||
|
export FAUNADB_SECRET=abcYourKeyHere
|
||||||
|
|
||||||
|
=========================
|
||||||
|
`)
|
||||||
|
process.exit(1)
|
||||||
|
}
|
||||||
51
_init-fauna-database.js
Normal file
51
_init-fauna-database.js
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
/* bootstrap database in your FaunaDB account */
|
||||||
|
const readline = require('readline');
|
||||||
|
const faunadb = require('faunadb');
|
||||||
|
const q = faunadb.query;
|
||||||
|
|
||||||
|
ask('Enter your faunaDB server key', function(err, answer) {
|
||||||
|
const key = answer || process.env.FAUNADB_SECRET
|
||||||
|
if (!key) {
|
||||||
|
console.log('Please set supply a faunaDB server key')
|
||||||
|
process.exit()
|
||||||
|
}
|
||||||
|
|
||||||
|
const client = new faunadb.Client({
|
||||||
|
secret: answer
|
||||||
|
});
|
||||||
|
|
||||||
|
createFaunaDB(key).then(() => {
|
||||||
|
console.log('Database created')
|
||||||
|
})
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
function createFaunaDB(key) {
|
||||||
|
const client = new faunadb.Client({
|
||||||
|
secret: key
|
||||||
|
});
|
||||||
|
|
||||||
|
/* Based on your requirements, change the schema here */
|
||||||
|
return client.query(q.Create(q.Ref("classes"), { name: "todos" }))
|
||||||
|
.then(()=>{
|
||||||
|
return client.query(
|
||||||
|
q.Create(q.Ref("indexes"), {
|
||||||
|
name: "all_todos",
|
||||||
|
source: q.Ref("classes/todos")
|
||||||
|
}))
|
||||||
|
})
|
||||||
|
.then(console.log.bind(console))
|
||||||
|
.catch(console.error.bind(console))
|
||||||
|
}
|
||||||
|
|
||||||
|
// Readline util
|
||||||
|
function ask(question, callback) {
|
||||||
|
const rl = readline.createInterface({
|
||||||
|
input: process.stdin,
|
||||||
|
output: process.stdout
|
||||||
|
});
|
||||||
|
rl.question(question + '\n', function(answer) {
|
||||||
|
rl.close();
|
||||||
|
callback(null, answer);
|
||||||
|
});
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue