Skip to content

Instantly share code, notes, and snippets.

@octavioturra
Created July 28, 2016 02:05
Show Gist options
  • Save octavioturra/63ce72cbb5063b55c8a0df37dfff8c41 to your computer and use it in GitHub Desktop.
Save octavioturra/63ce72cbb5063b55c8a0df37dfff8c41 to your computer and use it in GitHub Desktop.
(ns aranaktu.locals)
(def api-key "")
(def auth-domain "aranaktu-3f89f.firebaseapp.com")
(def database-URL "https://aranaktu-3f89f.firebaseio.com")
(def storage-bucket "")
(def base-data {
:themes {
1 {
:title "Geral"
:icon "house"
}
}
:users {
1 {
:nickname "urso braco"
:experience 5
:area 1
}
}
:areas {
1 {
:description "full-stack"
:avatar "http://lorempixum.com/120/120"
}
}
:event {
1 {
:participants {
1 {
:user 1
}
}
:speeches {
1 {
:name "Introdução"
:hour 1469811600000
:speaker 1
:theme 1
}
}
:speakers {
1 {
:user 1
:name "Mateus"
:quote "Fale, jovem"
:bio "Desenvolvedor at GuiaBolso"
:profile-pic "http://lorempixum.com/120/120?1"
}
}
:nps [
{
:speech 1
:user 1
:participant 1
}
]
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment