-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuildfile
31 lines (24 loc) · 1.07 KB
/
Buildfile
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
# ==========================================================================
# Project: Forms
# Copyright: @2012 My Company, Inc.
# ==========================================================================
# This is your Buildfile, which sets build settings for your project.
# For example, this tells SproutCore's build tools that EVERYTHING
# requires the SproutCore framework.
config :all, :required => :sproutcore
# In addition to this Buildfile, which gives settings for your entire project,
# each of your apps has its own Buildfile with settings specific to that app.
mode :debug do
config :all,
:combine_javascript => false,
:combine_stylesheet => true
end
mode :production do
config :all, :url_prefix => "/forms/_design/data"
end
config :all, :html5_manifest => true
#proxy '/', :to => 'dat.iriscouch.com', :timeout => 30000
proxy '/', :to => 'localhost:5984', :timeout => 30000
#proxy '/forms', :to => 'localhost:5984', :timeout => 3000
#proxy '/_uuids', :to => 'localhost:5984', :timeout => 3000#
#proxy '/forms-dev', :to => 'dat.iriscouch.com', :timeout => 3000