Hosting for Smalltalk web-application. Pharocloud offers the whole infrastructure for easy deploy of complex Pharo projects: databases, servers for static sources of web applications, etc.
Questions tagged [pharocloud]
5 questions
5
votes
1 answer
How do you add dependency to a Pharo image?
After building an application using Seaside I managed to push my Pharo image code to GitHub using iceberg. I was able to clone it into a new Pharo image on a new machine. However, loading the package into the image seems to generate an error…

ludo
- 543
- 3
- 14
3
votes
2 answers
Downloading sources file to image directory
I am using PharoCloud to host a Pharo image for me. By default it downloads a ZIP of the image only to my appliance; this ZIP doesn't include the .sources file.
I am trying to manually download the sources file with ZnClient. The directory my…

xofz
- 5,600
- 6
- 45
- 63
2
votes
1 answer
How can I refresh a session for every 60 second and display it on transcript with Pharo?
|a b |
a := ZnClient new.
a get: 'http://cloud-storage.com/login'.
a
formAt: 'username' put: 'jom';
formAt: 'password' put: 'mypass';
post;
get: 'http://cloud-storage.com/my-file'.
"Here I want to refresh the session for every 60sec and"
"to…

ludo
- 543
- 3
- 14
1
vote
1 answer
How do I change my PharoCloud appliance domain to my domain?
I registered at PharoCloud. Now I have an appliance that serves web pages at http://mydomain.pharocloud.com
How can I serve these pages from http://mydomain.com? The domain is registered with GoDaddy; do I need to update the hosts file somehow?

xofz
- 5,600
- 6
- 45
- 63
0
votes
1 answer
Why does my fresh installed Pharo.image does not save as given in the tutorial?
I am trying to to deploy a Pharo web application on a linux server. I have followed the tutorial in the Pharo enterprise book.
However, when I type the command ./pharo Pharo.image save myApp I get the message no such file or directory
What am I…

ludo
- 543
- 3
- 14