Questions tagged [development-mode]
30 questions
27
votes
7 answers
GWT is slow in Development Mode
I'm using Eclipse Galileo with latest GWT 2.0 version in development mode, but it runs really slow (I need to wait about a minute to open one page, but after compilation, my application works very well when I run it using Tomcat 5.5).
My code is not…

Ehsan Khodarahmi
- 4,772
- 10
- 60
- 87
17
votes
2 answers
Is there a way to determine if GWT code is running in development mode?
I'm working on a GWT application and would like to branch some logic based on whether the code is running in development mode or is live in production.
For example, when the code needs to make an AJAX call we would like to set the URL depending on…

arrrghnold
- 173
- 1
- 4
7
votes
6 answers
GWT Development mode - Unable to load module in Chrome
I'm trying to load my app in development mode using Chrome v. 20.0 on my local ip 127.0.0.1.
The app fails to load, and the following is displayed:
message:
"GWT Code Server Disconnected
Most likely, you closed GWT Development Mode. Or, you might…

Andrei F
- 4,205
- 9
- 35
- 66
5
votes
1 answer
webpack - weird console messages (output served, 404s will fallback, content not from webpack is served ... etc.)
After bundling in development mode, I get these messages in console:
webpack output is served from /
i 「wds」: Content not from webpack is served from C:\projectName\dist
i 「wds」: 404s will fallback to /index.html
In webpack.dev.config.js I…
user3681549
5
votes
1 answer
Stop Rails from unloading a module in development mode
I have a module in my Rails app that lives in /lib
module MyModule
mattr_accessor :the_variable
class << self
def setup
yield this
end
end
end
From my environments/#{RAILS_ENV}.rb file I can then set an environment-specific…

Gareth
- 133,157
- 36
- 148
- 157
4
votes
1 answer
With Ruby + Webrick + Sinatra, where does 'development?' method come from?
Where does the concept of 'development mode' come from when using ruby + webrick + sinatra?
require 'sinatra'
require 'sinatra/reloader'
get '/test' do
development?.to_s
end
When I run the above app by 'ruby test.rb -p 3000'…

Michael Wasser
- 1,776
- 2
- 21
- 32
3
votes
1 answer
GWT Development mode not working (configuring web.xml)
My application is working great in development mode (with GWT-RPC calls), however whenever I try to test it using production mode (by removing the ?gwt.codesvr=127.0.0.1:9997 part of the URL), it used to give me a blank page.
I manually checked the…

dominicbri7
- 2,479
- 4
- 23
- 33
2
votes
3 answers
Is there a way to know if a website is in development mode or production mode in Django?
In Django, Because when in development and production mode, the settings.py file has to be so much different
For example
Development:
DEBUG = true
...
ALLOWED_HOSTS = []
...
EMAIL_PAGE_DOMAIN = 'http://127.0.0.1:8000'
Production:
DEBUG =…

T H
- 423
- 4
- 7
1
vote
3 answers
Delete GWT module development mode?
I have a GWT application with several modules. I have deleted one that I don't need anymore (JasperReportTest) - I deleted JasperReportTest.gwt.xml file and classes referring to that module.
But when I try to run my application in development mode I…

Sobis
- 1,385
- 4
- 20
- 29
1
vote
1 answer
Zend-Framework. (composer development-enable)
Good day everyone.
In the new version of Zend Framework when I enable Development mode
$ composer development-enable
application works good. When I disable Development mode
$ composer development-disable
it stops working
Fatal error: Uncaught…

Denis R
- 21
- 3
1
vote
1 answer
Can I turn on/off Android development mode programmatically?
I cannot find any discussion about turn on/off Android development mode programmatically.
All the articles I found are talking about change it manually.
So I want to ask can I switch the development mode in program?

Ray
- 568
- 6
- 20
1
vote
1 answer
(Why) Does Apigility only work in the development mode?
In the Apigility docu is described, how to "install" Apigility. There are several methods to do this, but the last step should alway be:
cd path/to/install
php public/index.php development enable # put the skeleton in development mode
Without it…

automatix
- 14,018
- 26
- 105
- 230
1
vote
1 answer
GWT Development Mode error
When i try to execute the project, even the default "Web Application Project", I receive this error:
INFO: Module instance default is running at localhost:8888
apr 07, 2014 9:02:46 AM com.google.appengine.tools.development.AbstractModule…

Karmagy
- 141
- 1
- 1
- 10
1
vote
1 answer
Couldn't run in dev mode GWT
I have a GWT project and I can run it via hosted mode of build.xml.
But in case I don't have it(projects that I created by eclipse plugin) I run it by running com.google.gwt.dev.DevMode.class file but it says :
Plugin failed to connect to…

Obtice
- 1,205
- 3
- 18
- 44
1
vote
1 answer
Google Eclipse Plugin: Browser Plugin vs. Development Mode
I understand that Google's plugin for Eclipse tries to emphasize the "code-test-debug" cycle and make it as quick as possible, and that it comes with a medley of tools for doing just this.
What I don't understand is the need for a "developer"…

IAmYourFaja
- 55,468
- 181
- 466
- 756