generator-steroids
Version:
A Yeoman generator for Steroids
64 lines (51 loc) • 2.03 kB
text/coffeescript
# For an explanation of the steroids.config properties, see the guide at
# http://guides.appgyver.com/steroids/guides/project_configuration/config-application-coffee/
steroids.config.name = "Steroids Tutorial"
# -- Initial Location --
steroids.config.location = "http://localhost/index.html"
# -- Tab Bar --
# steroids.config.tabBar.enabled = true
# steroids.config.tabBar.tabs = [
# {
# title: "Index"
# icon: "icons/pill@2x.png"
# location: "http://localhost/views/steroidsTutorial/index.html"
# },
# {
# title: "Welcome"
# icon: ""
# location: "http://localhost/index.html"
# },
# {
# title: "Internet"
# icon: "icons/telescope@2x.png"
# location: "http://www.google.com"
# }
# ]
# steroids.config.tabBar.tintColor = "#000000"
# steroids.config.tabBar.tabTitleColor = "#00aeef"
# steroids.config.tabBar.selectedTabTintColor = "#ffffff"
# steroids.config.tabBar.selectedTabBackgroundImage = "icons/pill@2x.png"
# steroids.config.tabBar.backgroundImage = ""
# -- Navigation Bar --
steroids.config.navigationBar.tintColor = "#00aeef"
steroids.config.navigationBar.titleColor = "#ffffff"
steroids.config.navigationBar.buttonTintColor = "#ffffff"
steroids.config.navigationBar.buttonTitleColor = "#ffffff"
# steroids.config.navigationBar.landscape.backgroundImage = ""
# steroids.config.navigationBar.portrait.backgroundImage = ""
# -- Android Loading Screen
steroids.config.loadingScreen.tintColor = "#262626"
# -- iOS Status Bar --
steroids.config.statusBar.enabled = true
steroids.config.statusBar.style = "default"
# -- File Watcher --
# steroids.config.watch.exclude = ["www/my_excluded_file.js", "www/my_excluded_dir"]
# -- Pre- and Post-Make hooks --
# steroids.config.hooks.preMake.cmd = "echo"
# steroids.config.hooks.preMake.args = ["running yeoman"]
# steroids.config.hooks.postMake.cmd = "echo"
# steroids.config.hooks.postMake.args = ["cleaning up files"]
# -- Default Editor --
# steroids.config.editor.cmd = "subl"
# steroids.config.editor.args = ["."]