sproutit / samples-todos

Sample SproutCore Todo Application. Tags are saved at each step

This URL has Read+Write access

samples-todos / sc-config
100644 90 lines (71 sloc) 3.788 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# SPROUTCORE CONFIGURATION FILE
# Use this file to customize the URLs, source and output paths and other
# options used by the SproutCore build system to create the output for your
# SproutCore applications.
 
# If you want to use the libraries provided by other gems, require those gems
# here. SproutCore will automatically locate and load any bundles found in
# your load path. The sproutcore gem is automatically loaded for you.
#
# require 'sproutcore'
 
# This configuration section will be applied to all bundles used by your
# application, even bundles that come from other gems.
config :all do |c|
 
  # Name any other frameworks your bundles depend upon. The stylesheets and
  # JavaScript for required bundles will be loaded before your bundle on your
  # page.
  c[:required] = [:sproutcore]
 
  # This string will be prepended before any URLs that reference JavaScript,
  # CSS or images in your files.
  c[:resources_at] = 'static'
 
  # This string will be prepended before any index.html urls that actually
  # load your clients. Setting this to an empty string will mount all
  # of your clients at the root URL level.
  c[:index_at] = ''
 
  # If you also need to load external stylesheets not managed by the bundle
  # system, name the URLs you want to reference here.
  # c[:stylesheet_libs] = ['/stylesheets/public.css']
 
  # If you also need to load external javascripts not managed by the bundle
  # system, name the URLs you want to reference here. These will be loaded
  # automatically.
  # c[:javascript_libs] = ['/javascript/scriptaculous.js']
 
  # This is the preferred language. When the user visits the root URL of
  # your client, this is the language they will get. When looking for a
  # resources (such as an image or stylesheet), SproutCore will also try
  # your preferred language .lproj if it cannot find the resource in the
  # current language.
  # c[:preferred_language] = :fr
 
  # If you want to use a default root layout template other than the default
  # provided by SproutCore, you can specifiy the path name to the index.html
  # here. If you provide a relative path, SproutCore will assume the file
  # is relative to the root of this project.
  # c[:layout] = 'lib/index.rhtml'
 
  # This is the fully qualified path to the directory you want all of your
  # static files stored in. You can place any files not managed by the build
  # system here. SproutCore will also save its cached resources here.
  # c[:public_root] = File.join(File.dirname(__FILE__), 'public')
 
  # The default build mode. Normally you can specify this on the command
  # line as well using the -e option, but you can override the default
  # using this config as well.
  #c[:build_mode] = :production
 
  # Name the build modes that you want JavaScript to be minified in. Normally
  # JavaScript is only minified in production. This only has effect if you
  # are also building composite javascript in the same mode.
  #c[:minify_javascript] = :production
  
  # Name the build modes that you want your JavaScript to appear as a
  # composite file instead of the individual parts. This can be an array.
  #c[:combine_javascript] = :production
  
  # Name the builds modes that you want you CSS to appear as compite files
  # instead of individual parts. This can be an array.
  #c[:combine_stylesheets] = :production
  
  # Name the build modes that should include fixture data.
  #c[:include_fixtures] = :development
 
end
 
# Add configurations for specific bundles here as well. Any options you
# provide here will override the defaults provided by the bundles themselves
# as well as any options you place in the :all category above.
#
# config :contacts do |c|
# c[:required] = [:sproutcore, :shared]
# end
#
 
proxy '/tasks', :to => 'localhost:8080'