Questions tagged [devserver]
63 questions
2
votes
1 answer
Routing tasks to specific modules in GAE devserver
I'm trying to convert my current GAE project to using modules. I'd like all tasks of a certain path to run on a specific module.
I understand that in production, I can just enqueue the task as normal and the dispatch file handles routing it to the…

aloo
- 5,331
- 7
- 55
- 94
2
votes
2 answers
App Engine dev server: bad runtime process port ['']
I get following error message when I run the local dev server:
bad runtime process port ['']
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site.py", line 565, in
…

Okku
- 1,167
- 1
- 13
- 23
1
vote
1 answer
how to return a devserver for custom configuration while setting up cypress component testing with custom devserver
I have a react component library which is bundled using Rollup. I want to add cypress component testing so that I can unit test those components using cypress.Cypress currently supports setting automatic configuration for React using either webpack'…

Akshay Vijay Jain
- 13,461
- 8
- 60
- 73
1
vote
1 answer
Enabling CORS for VueJS devserver
My setup is the following:
Custom DNS server pointing a custom TLD to localhost
nginx as a reverse proxy
golang backend
VueJS front-end through vue-cli
What I want is to have both my api and my frontend on sub.domain.tld where /api is…

Nathan J
- 75
- 2
- 10
1
vote
2 answers
Django development server shutdown on error
I am running a dev server on localhost to test a django app. About a week ago the dev server started exiting on error- which is not ideal.
To give you an instance, imagine I want to create a new view, I make my template, then I add the following in…

Preston
- 7,399
- 8
- 54
- 84
1
vote
1 answer
Why can't access to especific DB using PDO, but can using mysqli without DB name? (usign devserver/phpmyadmin)?
I install easyphp/devserver (v17.0) in a windows 10 x64 machine.
Working with tables and testing to store remote data with simple php files (very new with DataBases).
I'm trying to setup an access to my DB for my project (preferably using…

Lokotito
- 27
- 5
1
vote
1 answer
Error: output.path needs to be an absolute path or /
This is my webpack.config file. When I run webpack, bundle.js correctly writes to project/dist/assets/bundle.js.
However, when I run npm start to serve up the files, I get an error:
Error: output.path needs to be an absolute path or /.
So... if I…

Kirk Ross
- 6,413
- 13
- 61
- 104
1
vote
1 answer
Is there a way to get the google app engine developer tool to show post data?
I'm having a heck of a time debugging my task queues in Google app engine as a bug in the task queue becomes very hard to track down as I don't know exactly what data is being posted.
I was hoping that I could get the dev_appserver.py application to…

Simon
- 1,819
- 3
- 18
- 26
1
vote
2 answers
EasyPHP - Devserver Vs Webserver for a local websites
Is it acceptable to use the EasyPHP DevServer to host a local websites used by many other user on the same network ?
I Know it is suppose to be only a developpement environnement but is it really necessary to use the Webserver if all user are in…

Mr Rubix
- 1,492
- 14
- 27
1
vote
1 answer
Connecting to Flask server from different devices on network results in timeout
I'm currently learning Flask and I decided to try to connect to a very simple server from other devices on my network. I followed the advice given at
Flask - configure dev server to be visible across the network and changed…

user2908493
- 11
- 1
- 2
1
vote
1 answer
Running modules project in devserver using gcloud command
I have created a project using maven with the following "layout"
- proj-ear
- module1-war
- module2-war
Running this with "mvn appengine:devserver" works just fine, both apps/modules starts and shows up in admin console.
However, I am not able to…

Chuck Lega
- 47
- 1
- 5
1
vote
0 answers
App engine dev server through LAN. Cloud storage bug
To access the dev server through LAN, we set the --host to 0.0.0.0 as mentioned i the post Is there any way to access GAE dev app server in the local network?. But if i upload a file with this settings, I am not able to access the image (through…

Raghavendra Chary
- 19
- 2
1
vote
0 answers
Google App Engine Endpoints through proxy: ServerDoesNotExistError
i have the following setup for my webapp and restful service (two devservers):
- backend: google app engine (python) 1.8.0 using endpoints api (localhost:8080)
- frontend: angularjs, using yeoman+grunt (localhost:9000)
i want to keep these two…

Suau
- 4,628
- 22
- 28
1
vote
2 answers
Run aspx page from winforms
I have website and winform projects,
the site is virtual book shop,
there's a part when you're done "buying" and the site generates reciept as aspx page based on session["Order"] value,
i would like to be able to get to the reciept page from my…

user1652656
- 53
- 1
- 5
1
vote
1 answer
API error 1 (datastore_v3: BAD_REQUEST): ApplicationError: 1 app "id1" cannot access app "id2"'s data
I am getting the following error on the AppEngine DevServer in Go:
API error 1 (datastore_v3: BAD_REQUEST): ApplicationError: 1 app
"id1" cannot access app "id2"'s data
(where "id1" and "id2" are real identifiers used by two of my…

yngling
- 1,376
- 2
- 22
- 34