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
1
vote
1 answer

Vue.js and Codenvy?

im trying to get a basic vue.js workspace up and running. But it seems that anything i tried does not work. Builting it up myself or use a git repo won't work at all. Is it even possible get it work? Reproduction Steps: created blank workspace with…
Giskard
  • 65
  • 1
  • 8
1
vote
1 answer

codenvy.com - eclipse che - create a custom stack

create a custom stack i'm trying to run neo4j on codenvy, in order to achieve that i did the following 1) created a new stack, adding a new machine with this configuration: new-machine: image: neo4j/3.0 mem_limit: 1073741824 2) create a new…
pinale
  • 2,060
  • 6
  • 38
  • 72
1
vote
0 answers

HowTo Jhipster microservices and Gateway WITH codenvy?

I wish there's a trick for coding jHipster Microservices and Gateway with Codenvy, even with these issues related in the below closed isssue. This closed issue comes from Jhipster, which is reason why I ask here, so please see it carefully if…
Ass7
  • 11
  • 4
1
vote
1 answer

Codenvy preview for Angular project

I am trying to preview an angular app from codenvy. As per the instructions, Codenvy preview docs I tried creating a command as the following:cd myproject/public; ng serve. I used the following command macro ${server.8000}. This gives me a preview…
Abrar Hossain
  • 2,594
  • 8
  • 29
  • 54
1
vote
2 answers

codenvy: How to create a persistent file?

I'm learning codenvy.io, and have most of my code in git. This part works well with projects. However, the code has a secrets file, which is not in git, but is created on the individual computers that you are running the code on. Using codenvy, this…
robertlayton
  • 612
  • 1
  • 7
  • 20
1
vote
1 answer

Codenvy - Bitnami Express Stack : what is mongodb user/pwd?

I installed the Bitnami Express Stack on Codenvy (https://codenvy.io). -> Now I need to configure the connection to the database in my project. Simple question : How to connect to mongo (what is the…
Tyvain
  • 2,640
  • 6
  • 36
  • 70
1
vote
2 answers

Codenvy Bitbucket Integration

I tried going to CodeEnvy to make a new Android Workspace for my project hosted on Bitbucket I got the following error Authentication is required but no CredentialsProvider has been registered I checked the Codenvy Documentation, but it…
Para
  • 2,022
  • 5
  • 34
  • 73
1
vote
0 answers

Re: Finding the live URL in Codenvy for python and django

I am trying to create a web app using Codenvy using python and the Django framework, but I cannot seem to get anything running. I have create the basic template of a webapp, and have pressed both the "run button" as well as the following in the…
ChrisTodd
  • 11
  • 4
1
vote
1 answer

Import or use Android Studio projects in Codenvy IDE

I am trying to use Codenvy to develop, and I am switching from Android Studio. I am in the middle of a project. How can I transition? Can I use a special import feature? I have already tried to copy and paste the code, but a lot of libraries don't…
BeekayDev
  • 13
  • 4
1
vote
0 answers

codenvy gdb debugger for go

I got at reply from Codenvy that gdb debugging go(lang)is working, but no documentations on how to - and I can not find any documentations on this. I got this link from Codenvy. The Codenvy docs do not describe how, just that it can. Can you, and if…
Chris G.
  • 23,930
  • 48
  • 177
  • 302
1
vote
1 answer

Using Lombok in Codenvy IDE

I'm trying to develop a Maven Project under the Codenvy classic IDE and I don't want to write getters/setters boilerplate so I had lombok's as dependency to my pom and try to develop my bean under Codenvy. Although this code building, under…
RGuillome
  • 35
  • 6
1
vote
1 answer

Bidirectionnal Sync with shell/terminal and actual code in Codenvy

I managed to create a working shell with the following runner: FROM codenvy/shellinabox RUN sudo apt-get update && sudo apt-get -y install g++ git htop ssh tmux vim python VOLUME ["/home/user/app"] ENV CODENVY_APP_BIND_DIR /home/user/app CMD sleep…
antogerva
  • 549
  • 1
  • 9
  • 22
1
vote
1 answer

How do I build an Ionic 2 application in Codenvy

I am trying to build an Ionic version 2 application in codenvy and having got so far i have found myself stuck. Using henyojess's docker (https://github.com/henyojess/codenvy-cli) as a sterting point I have made a couple of amendments upgrading…
George
  • 75
  • 3
1
vote
1 answer

Codenvy add postgresql to the project error

I am new at Codenvy so my question can be very stupid, by the way this is my problem: I created my project then to add the DB (postgresql) i created a new docker file and i pasted in it the code in this file:…
Sabbo
  • 93
  • 2
  • 6
1
vote
2 answers

How to post multipart/form-data?

I'm creating an extension that automates procedures within Codenvy by using the REST API they provide. However, I'm having trouble with a multipart/form-data POST request. Specically, creating a new factory. This is my ajax/jquery call: $.ajax({ …