Questions tagged [codenvy]

Codenvy is an SaaS or PaaS development environment that allows developers to create hosted environments optimized for creating, editing, compiling, testing and debugging applications authored in different programming languages.

Codenvy is an or an development environment that allows developers to create hosted environments optimized for creating, editing, compiling, testing and debugging applications authored in different programming languages (PHP, Javascript, Python, Go, Java, C++ and Ruby). Here's a link to the languages, frameworks, databases that Codenvy supports -- http://docs.codenvy.com/user/specifications-and-core-technologies/#languages

From the Wikipedia article.

81 questions
7
votes
1 answer

Create postgres extension in docker container

I am attempting to create a postgres instance in a Docker container using the following Dockerfile. FROM postgres ENV POSTGRES_DB dspace ENV POSTGRES_USER dspace ENV POSTGRES_PASSWORD dspace COPY init.sql /docker-entrypoint-initdb.d/ Here is my…
terrywb
  • 3,740
  • 3
  • 25
  • 50
4
votes
1 answer

getResource in Java based in the URI in Codenvy

That's my controller: public class GreetingController implements Controller { private static final String MARKERS_FILE_NAME = "markers.txt"; @Override public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse…
3
votes
4 answers

Codenvy git push command

My 'Codenvy git config' is ok (can push through menu: git > remote > push). Now I would like to configure a 'push' through command. I tried a simple 'git push' but it asks for login / password. Managed to do it with : git push…
Tyvain
  • 2,640
  • 6
  • 36
  • 70
3
votes
3 answers

Create "Hello World" using Java on Codenvy

Before you read, understand I'm clearly a noob (Actually, I don't even know anything about programming yet). I wanted to start learning-practicing with Java using an online IDE. In this case, I'm using Codenvy (www.codenvy.com). It's clearly…
Fallen Being
  • 49
  • 1
  • 3
2
votes
2 answers

Codenvy: Can't run simple Hello World java program

I'm trying to run a simple program: public class Greet { public static void main(String[] args) { System.out.println("HELLO"); } } But I get /bin/bash: line 2: $'\r': command not found python: can't open file…
Ans
  • 1,212
  • 1
  • 23
  • 51
2
votes
2 answers

Ruby and Rails "path not found" when installed using RVM on Docker

I'm working on a docker file to create a custom workspace on Codenvy. When I create the workspace everything seems to install correctly but when the workspace open and I enter ruby -v I get: bash: ruby: command not found Same for…
mack
  • 2,715
  • 8
  • 40
  • 68
2
votes
1 answer

Cannot run the sample android application in the codenvy emulator

I tried creating an Android workspace with Codenvy with the sample hello world app provided. I built and ran the project. Clicked on 1(execute the run command) and then on 2(preview). I never saw the hello world activity in the emulator screen and…
Para
  • 2,022
  • 5
  • 34
  • 73
2
votes
2 answers

How to access a Codenvy Spring Boot web controller?

I am testing Codenvy (https://codenvy.io) and made a very simple Spring Boot web controller: @Controller @EnableAutoConfiguration public class SampleController { @RequestMapping("/") @ResponseBody String home() { return "Hello…
Tyvain
  • 2,640
  • 6
  • 36
  • 70
2
votes
0 answers

Codenvy graphical output with Python?

I'm trying to get familiar with codenvy IDE. I work with matplotlib to view some graphical results but it seems this cloud IDE doesn't support an output window with any visuals. Is there a way to view anything except text in terminal window or I…
mstrfx
  • 29
  • 2
2
votes
1 answer

CentOS 7 : docker in docker: "Error: No space left on device"

I been tackling trying to get docker-in-docker working for a CentOS 7 image, with ubuntu as the host image. As of now i have not started building this as a docker image. And is currently experimenting with bash on how to "get docker in docker to…
PicoCreator
  • 9,886
  • 7
  • 43
  • 64
2
votes
1 answer

How do I run a simple python 2.7 project in codenvy?

I'm trying to use codenvy.com to run a simple python 2.7 project, but I get this error: [ERROR] testing-python2_unpack/requirements.txt: no such file or directory what is the requirements.txt file, where to put it and what should it be to run a…
lapisdecor
  • 243
  • 2
  • 10
2
votes
1 answer

Develop an android project with codenvy

I'm trying to use codenvy to develop android projects, but I don't know how I can launch the emulator to see my project running. I found this video(https://www.youtube.com/watch?v=HqkHOWbFrDQ) about using manymo as a cloud based emulator but I don't…
Neo
  • 696
  • 1
  • 14
  • 33
2
votes
2 answers

Unable to run java console app using codenvy SDK

I installed codenvy SDK in my linux machine from github: https://github.com/codenvy/sdk After starting the server localhost:8080 I tried to run the simple hello java console application. But when I run this app, I am getting the following error. Can…
2
votes
2 answers

Python 2.7 - Codenvy - Debugging issues

I'm working with Codenvy writing a Google Appengine app, and I have found it to be INSANELY difficult to debug. If there's a syntax error I have to find it manually as the web page that loads when testing give me and error:500. Also, I often want to…
jtsmith1287
  • 1,110
  • 2
  • 13
  • 24
1
vote
3 answers

How can I open a new browser tab from Python in Eclipse Che?

I am running Eclipse Che v6.18.1 in Google Chrome on MacBook Pro OS v10.10.5 (Yosemite). Eclipse Che workspace runs in a Docker container. How can I open a new browser tab (in the same browser window as Eclipse Che) from within a Python code…
Tony
  • 7,767
  • 2
  • 22
  • 51
1
2 3 4 5 6