diff options
Diffstat (limited to 'put_in_db.js')
-rw-r--r-- | put_in_db.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/put_in_db.js b/put_in_db.js index af0a5ad..f5ec09e 100644 --- a/put_in_db.js +++ b/put_in_db.js @@ -76,6 +76,16 @@ var blogs = [ keywords: ["docker", "linux", "security"], lastUpdatedAt: Date.now(), }, + { + title: "A Disposable Firefox Instance", + slug: "disposable_firefox_instance", + body: fs.readFileSync(path.join(__dirname) + "/mds/disposablefirefox.md"), + teaser: fs.readFileSync( + path.join(__dirname) + "/mds/disposablefirefox.txt", + ), + keywords: ["vagrant", "linux", "libvirt", "firefox", "qemu", "ufw"], + lastUpdatedAt: Date.now(), + }, ]; db.blogposts.insertMany(blogs); |