Did anybody deploy a wiki as app to CF?


Stephan Weber
 

Hi,

Did anybody deploy a wiki as app to CF?
Which one?
Can you point me to a ‘how-to’?

Best regards, Stephan


Johannes Tuchscherer
 

Hi Stephan,

I managed to get an instiki(instiki.org) instance up and running on PWS. I
had to change a few things to get it to work and even with those changes, it
isn't great yet. For example, uploaded files are stored locally in the
Warden container. Therefore, they get lost when the app is restarted. But it
wouldn't be to hard to change the code to use an S3 bucket as a storage
solution, I just didn't bother yet.

I will clean up my local changes and document them, then I'll push them up
to github.

P.S.: I also looked for some other open source wiki engines. I didn't find a
single one that could be deployed to CF (or any other PaaS) without major
changes.



--
View this message in context: http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p680.html
Sent from the CF Dev mailing list archive at Nabble.com.


James Bayer
 

this shows how to use drupal which is a cms with wiki functions
http://blog.pivotal.io/pivotal-cloud-foundry/products/how-to-deploy-drupal-to-pivotal-cf-within-seconds

if you're in a private deployment, the services shown for drupal are both
available as oss and listed on bosh.io.

mediawiki is a php app with mysql as an option:
https://www.mediawiki.org

but i'm not aware of install instructions for that. there are other options
here: https://en.wikipedia.org/wiki/List_of_wiki_software

On Fri, Jul 10, 2015 at 3:09 PM, jtuchscherer(a)pivotal.io <
jtuchscherer(a)pivotal.io> wrote:

Hi Stephan,

I managed to get an instiki(instiki.org) instance up and running on PWS. I
had to change a few things to get it to work and even with those changes,
it
isn't great yet. For example, uploaded files are stored locally in the
Warden container. Therefore, they get lost when the app is restarted. But
it
wouldn't be to hard to change the code to use an S3 bucket as a storage
solution, I just didn't bother yet.

I will clean up my local changes and document them, then I'll push them up
to github.

P.S.: I also looked for some other open source wiki engines. I didn't find
a
single one that could be deployed to CF (or any other PaaS) without major
changes.



--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p680.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer


Daniel Mikusa
 

On Fri, Jul 17, 2015 at 2:08 AM, James Bayer <jbayer(a)pivotal.io> wrote:

this shows how to use drupal which is a cms with wiki functions
http://blog.pivotal.io/pivotal-cloud-foundry/products/how-to-deploy-drupal-to-pivotal-cf-within-seconds
Be careful with this. It uses a custom build pack (fork of standard PHP
BP) and last I saw, it wasn't updated for `cflinuxfs2`.

Dan




if you're in a private deployment, the services shown for drupal are both
available as oss and listed on bosh.io.

mediawiki is a php app with mysql as an option:
https://www.mediawiki.org

but i'm not aware of install instructions for that. there are other
options here: https://en.wikipedia.org/wiki/List_of_wiki_software

On Fri, Jul 10, 2015 at 3:09 PM, jtuchscherer(a)pivotal.io <
jtuchscherer(a)pivotal.io> wrote:

Hi Stephan,

I managed to get an instiki(instiki.org) instance up and running on PWS.
I
had to change a few things to get it to work and even with those changes,
it
isn't great yet. For example, uploaded files are stored locally in the
Warden container. Therefore, they get lost when the app is restarted. But
it
wouldn't be to hard to change the code to use an S3 bucket as a storage
solution, I just didn't bother yet.

I will clean up my local changes and document them, then I'll push them up
to github.

P.S.: I also looked for some other open source wiki engines. I didn't
find a
single one that could be deployed to CF (or any other PaaS) without major
changes.



--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p680.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


john mcteague <john.mcteague@...>
 

We've successfully deployed Drupal (7.3x), we used the blog article as a
starting point, but are using the vanilla php bp (so no varnish) and are
using s3fs module against our own internal s3 store for images. Modules and
themes need to be pushed as part of the app so we dont loose them on
restage activities.

In addition we have mediawiki running. We dont have any s3 filesystem
configured so we need to push images along with the main app otherwise we
loose them. For this reason its not a general purpose wiki.
LocalSettings.php was modified to read the VCAP_SERVICES data for mysql.

John

On Fri, Jul 17, 2015 at 2:24 PM, Daniel Mikusa <dmikusa(a)pivotal.io> wrote:

On Fri, Jul 17, 2015 at 2:08 AM, James Bayer <jbayer(a)pivotal.io> wrote:

this shows how to use drupal which is a cms with wiki functions
http://blog.pivotal.io/pivotal-cloud-foundry/products/how-to-deploy-drupal-to-pivotal-cf-within-seconds
Be careful with this. It uses a custom build pack (fork of standard PHP
BP) and last I saw, it wasn't updated for `cflinuxfs2`.

Dan




if you're in a private deployment, the services shown for drupal are both
available as oss and listed on bosh.io.

mediawiki is a php app with mysql as an option:
https://www.mediawiki.org

but i'm not aware of install instructions for that. there are other
options here: https://en.wikipedia.org/wiki/List_of_wiki_software

On Fri, Jul 10, 2015 at 3:09 PM, jtuchscherer(a)pivotal.io <
jtuchscherer(a)pivotal.io> wrote:

Hi Stephan,

I managed to get an instiki(instiki.org) instance up and running on
PWS. I
had to change a few things to get it to work and even with those
changes, it
isn't great yet. For example, uploaded files are stored locally in the
Warden container. Therefore, they get lost when the app is restarted.
But it
wouldn't be to hard to change the code to use an S3 bucket as a storage
solution, I just didn't bother yet.

I will clean up my local changes and document them, then I'll push them
up
to github.

P.S.: I also looked for some other open source wiki engines. I didn't
find a
single one that could be deployed to CF (or any other PaaS) without major
changes.



--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p680.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


James Bayer
 

i started a list of 3rd party compatible apps [1] for cloud foundry. if you
know of apps that work, please add it on the wiki, especially if there are
setup steps.

https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/3rd-Party-Compatible-Apps

On Fri, Jul 17, 2015 at 1:13 PM, john mcteague <john.mcteague(a)gmail.com>
wrote:

We've successfully deployed Drupal (7.3x), we used the blog article as a
starting point, but are using the vanilla php bp (so no varnish) and are
using s3fs module against our own internal s3 store for images. Modules and
themes need to be pushed as part of the app so we dont loose them on
restage activities.

In addition we have mediawiki running. We dont have any s3 filesystem
configured so we need to push images along with the main app otherwise we
loose them. For this reason its not a general purpose wiki.
LocalSettings.php was modified to read the VCAP_SERVICES data for mysql.

John



On Fri, Jul 17, 2015 at 2:24 PM, Daniel Mikusa <dmikusa(a)pivotal.io> wrote:

On Fri, Jul 17, 2015 at 2:08 AM, James Bayer <jbayer(a)pivotal.io> wrote:

this shows how to use drupal which is a cms with wiki functions
http://blog.pivotal.io/pivotal-cloud-foundry/products/how-to-deploy-drupal-to-pivotal-cf-within-seconds
Be careful with this. It uses a custom build pack (fork of standard PHP
BP) and last I saw, it wasn't updated for `cflinuxfs2`.

Dan




if you're in a private deployment, the services shown for drupal are
both available as oss and listed on bosh.io.

mediawiki is a php app with mysql as an option:
https://www.mediawiki.org

but i'm not aware of install instructions for that. there are other
options here: https://en.wikipedia.org/wiki/List_of_wiki_software

On Fri, Jul 10, 2015 at 3:09 PM, jtuchscherer(a)pivotal.io <
jtuchscherer(a)pivotal.io> wrote:

Hi Stephan,

I managed to get an instiki(instiki.org) instance up and running on
PWS. I
had to change a few things to get it to work and even with those
changes, it
isn't great yet. For example, uploaded files are stored locally in the
Warden container. Therefore, they get lost when the app is restarted.
But it
wouldn't be to hard to change the code to use an S3 bucket as a storage
solution, I just didn't bother yet.

I will clean up my local changes and document them, then I'll push them
up
to github.

P.S.: I also looked for some other open source wiki engines. I didn't
find a
single one that could be deployed to CF (or any other PaaS) without
major
changes.



--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p680.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer


sabith ks
 

There are couple of them listed in the php buildpack @
https://github.com/cloudfoundry/php-buildpack#examples

On Sat, Jul 18, 2015 at 12:29 PM James Bayer <jbayer(a)pivotal.io> wrote:

i started a list of 3rd party compatible apps [1] for cloud foundry. if
you know of apps that work, please add it on the wiki, especially if there
are setup steps.


https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/3rd-Party-Compatible-Apps

On Fri, Jul 17, 2015 at 1:13 PM, john mcteague <john.mcteague(a)gmail.com>
wrote:

We've successfully deployed Drupal (7.3x), we used the blog article as a
starting point, but are using the vanilla php bp (so no varnish) and are
using s3fs module against our own internal s3 store for images. Modules and
themes need to be pushed as part of the app so we dont loose them on
restage activities.

In addition we have mediawiki running. We dont have any s3 filesystem
configured so we need to push images along with the main app otherwise we
loose them. For this reason its not a general purpose wiki.
LocalSettings.php was modified to read the VCAP_SERVICES data for mysql.

John



On Fri, Jul 17, 2015 at 2:24 PM, Daniel Mikusa <dmikusa(a)pivotal.io>
wrote:

On Fri, Jul 17, 2015 at 2:08 AM, James Bayer <jbayer(a)pivotal.io> wrote:

this shows how to use drupal which is a cms with wiki functions
http://blog.pivotal.io/pivotal-cloud-foundry/products/how-to-deploy-drupal-to-pivotal-cf-within-seconds
Be careful with this. It uses a custom build pack (fork of standard PHP
BP) and last I saw, it wasn't updated for `cflinuxfs2`.

Dan




if you're in a private deployment, the services shown for drupal are
both available as oss and listed on bosh.io.

mediawiki is a php app with mysql as an option:
https://www.mediawiki.org

but i'm not aware of install instructions for that. there are other
options here: https://en.wikipedia.org/wiki/List_of_wiki_software

On Fri, Jul 10, 2015 at 3:09 PM, jtuchscherer(a)pivotal.io <
jtuchscherer(a)pivotal.io> wrote:

Hi Stephan,

I managed to get an instiki(instiki.org) instance up and running on
PWS. I
had to change a few things to get it to work and even with those
changes, it
isn't great yet. For example, uploaded files are stored locally in the
Warden container. Therefore, they get lost when the app is restarted.
But it
wouldn't be to hard to change the code to use an S3 bucket as a storage
solution, I just didn't bother yet.

I will clean up my local changes and document them, then I'll push
them up
to github.

P.S.: I also looked for some other open source wiki engines. I didn't
find a
single one that could be deployed to CF (or any other PaaS) without
major
changes.



--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p680.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev
--
Thanks
Sabith
408.896.6261
Mail send from portable device, excuse for any typos


Noburou TANIGUCHI
 

cloudfoundry.gr.jp, a Cloud Foundry user group in Japan, is currently running
a project (or a campaign, more properly) called "Cloud Foundry 100-day
challenge" ("Cloud Foundry 100-nichi Gyou" in Japanese. "gyou" originally
means a kind of discipline or training in Buddhism). It is an activity to
make 100 open source apps run on Cloud Foundry, one app per day.

http://blog.cloudfoundry.gr.jp/search/label/%E7%99%BE%E6%97%A5%E8%A1%8C

We have done 33 apps until now. We are sorry the all articles are presented
only in Japanese. Do they help your project, James?




--
View this message in context: http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p808.html
Sent from the CF Dev mailing list archive at Nabble.com.


Josh Long <starbuxman@...>
 

WOW!



-- 


Thanks,
Josh Long
the Spring Developer Advocate, Pivotal
http://joshlong.com || http://twitter.com/starbuxman || http://spring.io/team/jlong

On July 21, 2015 at 5:44:50 PM, Noburou TANIGUCHI (dev(a)nota.m001.jp) wrote:

cloudfoundry.gr.jp, a Cloud Foundry user group in Japan, is currently running
a project (or a campaign, more properly) called "Cloud Foundry 100-day
challenge" ("Cloud Foundry 100-nichi Gyou" in Japanese. "gyou" originally
means a kind of discipline or training in Buddhism). It is an activity to
make 100 open source apps run on Cloud Foundry, one app per day.

http://blog.cloudfoundry.gr.jp/search/label/%E7%99%BE%E6%97%A5%E8%A1%8C

We have done 33 apps until now. We are sorry the all articles are presented
only in Japanese. Do they help your project, James?




--
View this message in context: http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p808.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


Cornelia Davis <cdavis@...>
 

What Josh said!! WOW!

On Tue, Jul 21, 2015 at 6:53 PM, Josh Long <starbuxman(a)gmail.com> wrote:

WOW!



--


Thanks,
Josh Long
the Spring Developer Advocate, Pivotal
http://joshlong.com || http://twitter.com/starbuxman ||
http://spring.io/team/jlong

On July 21, 2015 at 5:44:50 PM, Noburou TANIGUCHI (dev(a)nota.m001.jp)
wrote:

cloudfoundry.gr.jp, a Cloud Foundry user group in Japan, is currently
running
a project (or a campaign, more properly) called "Cloud Foundry 100-day
challenge" ("Cloud Foundry 100-nichi Gyou" in Japanese. "gyou" originally
means a kind of discipline or training in Buddhism). It is an activity to
make 100 open source apps run on Cloud Foundry, one app per day.

http://blog.cloudfoundry.gr.jp/search/label/%E7%99%BE%E6%97%A5%E8%A1%8C

We have done 33 apps until now. We are sorry the all articles are
presented
only in Japanese. Do they help your project, James?




--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p808.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


Dieu Cao <dcao@...>
 

Very cool!

On Tue, Jul 21, 2015 at 8:16 PM, Cornelia Davis <cdavis(a)pivotal.io> wrote:

What Josh said!! WOW!

On Tue, Jul 21, 2015 at 6:53 PM, Josh Long <starbuxman(a)gmail.com> wrote:

WOW!



--


Thanks,
Josh Long
the Spring Developer Advocate, Pivotal
http://joshlong.com || http://twitter.com/starbuxman ||
http://spring.io/team/jlong

On July 21, 2015 at 5:44:50 PM, Noburou TANIGUCHI (dev(a)nota.m001.jp)
wrote:

cloudfoundry.gr.jp, a Cloud Foundry user group in Japan, is currently
running
a project (or a campaign, more properly) called "Cloud Foundry 100-day
challenge" ("Cloud Foundry 100-nichi Gyou" in Japanese. "gyou" originally
means a kind of discipline or training in Buddhism). It is an activity to
make 100 open source apps run on Cloud Foundry, one app per day.

http://blog.cloudfoundry.gr.jp/search/label/%E7%99%BE%E6%97%A5%E8%A1%8C

We have done 33 apps until now. We are sorry the all articles are
presented
only in Japanese. Do they help your project, James?




--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p808.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


Daniel Mikusa
 

That's awesome!

On Wed, Jul 22, 2015 at 3:14 AM, Dieu Cao <dcao(a)pivotal.io> wrote:

Very cool!

On Tue, Jul 21, 2015 at 8:16 PM, Cornelia Davis <cdavis(a)pivotal.io> wrote:

What Josh said!! WOW!

On Tue, Jul 21, 2015 at 6:53 PM, Josh Long <starbuxman(a)gmail.com> wrote:

WOW!



--


Thanks,
Josh Long
the Spring Developer Advocate, Pivotal
http://joshlong.com || http://twitter.com/starbuxman ||
http://spring.io/team/jlong

On July 21, 2015 at 5:44:50 PM, Noburou TANIGUCHI (dev(a)nota.m001.jp)
wrote:

cloudfoundry.gr.jp, a Cloud Foundry user group in Japan, is currently
running
a project (or a campaign, more properly) called "Cloud Foundry 100-day
challenge" ("Cloud Foundry 100-nichi Gyou" in Japanese. "gyou"
originally
means a kind of discipline or training in Buddhism). It is an activity
to
make 100 open source apps run on Cloud Foundry, one app per day.

http://blog.cloudfoundry.gr.jp/search/label/%E7%99%BE%E6%97%A5%E8%A1%8C

We have done 33 apps until now. We are sorry the all articles are
presented
only in Japanese. Do they help your project, James?




--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p808.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


Scott Deeg
 

I'll add Xenforo (PHP message board) to the list, but I don't have any
publicly available docs on setting it up. Is there any facility for a
mini-blog?

The OSS app project is beyond words.

On Wed, Jul 22, 2015 at 4:41 AM, Daniel Mikusa <dmikusa(a)pivotal.io> wrote:

That's awesome!

On Wed, Jul 22, 2015 at 3:14 AM, Dieu Cao <dcao(a)pivotal.io> wrote:

Very cool!

On Tue, Jul 21, 2015 at 8:16 PM, Cornelia Davis <cdavis(a)pivotal.io>
wrote:

What Josh said!! WOW!

On Tue, Jul 21, 2015 at 6:53 PM, Josh Long <starbuxman(a)gmail.com> wrote:

WOW!



--


Thanks,
Josh Long
the Spring Developer Advocate, Pivotal
http://joshlong.com || http://twitter.com/starbuxman ||
http://spring.io/team/jlong

On July 21, 2015 at 5:44:50 PM, Noburou TANIGUCHI (dev(a)nota.m001.jp)
wrote:

cloudfoundry.gr.jp, a Cloud Foundry user group in Japan, is currently
running
a project (or a campaign, more properly) called "Cloud Foundry 100-day
challenge" ("Cloud Foundry 100-nichi Gyou" in Japanese. "gyou"
originally
means a kind of discipline or training in Buddhism). It is an activity
to
make 100 open source apps run on Cloud Foundry, one app per day.

http://blog.cloudfoundry.gr.jp/search/label/%E7%99%BE%E6%97%A5%E8%A1%8C

We have done 33 apps until now. We are sorry the all articles are
presented
only in Japanese. Do they help your project, James?




--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p808.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

--
Scott Deeg
Senior Field Engineer, Pivotal
sdeeg(a)pivotal.io
408-315-1583


Matt Cowger
 

This is very very cool - just sent to the 200 SE's I'm training on
CloudFoundry in Tokyo this week.

On Thu, Jul 23, 2015 at 7:09 AM, Scott Deeg <sdeeg(a)pivotal.io> wrote:

I'll add Xenforo (PHP message board) to the list, but I don't have any
publicly available docs on setting it up. Is there any facility for a
mini-blog?

The OSS app project is beyond words.

On Wed, Jul 22, 2015 at 4:41 AM, Daniel Mikusa <dmikusa(a)pivotal.io> wrote:

That's awesome!

On Wed, Jul 22, 2015 at 3:14 AM, Dieu Cao <dcao(a)pivotal.io> wrote:

Very cool!

On Tue, Jul 21, 2015 at 8:16 PM, Cornelia Davis <cdavis(a)pivotal.io>
wrote:

What Josh said!! WOW!

On Tue, Jul 21, 2015 at 6:53 PM, Josh Long <starbuxman(a)gmail.com>
wrote:

WOW!



--


Thanks,
Josh Long
the Spring Developer Advocate, Pivotal
http://joshlong.com || http://twitter.com/starbuxman ||
http://spring.io/team/jlong

On July 21, 2015 at 5:44:50 PM, Noburou TANIGUCHI (dev(a)nota.m001.jp)
wrote:

cloudfoundry.gr.jp, a Cloud Foundry user group in Japan, is currently
running
a project (or a campaign, more properly) called "Cloud Foundry 100-day
challenge" ("Cloud Foundry 100-nichi Gyou" in Japanese. "gyou"
originally
means a kind of discipline or training in Buddhism). It is an activity
to
make 100 open source apps run on Cloud Foundry, one app per day.

http://blog.cloudfoundry.gr.jp/search/label/%E7%99%BE%E6%97%A5%E8%A1%8C

We have done 33 apps until now. We are sorry the all articles are
presented
only in Japanese. Do they help your project, James?




--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p808.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Scott Deeg
Senior Field Engineer, Pivotal
sdeeg(a)pivotal.io
408-315-1583


_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev

--
-- Matt


Noburou TANIGUCHI
 

Thank you, all.

I am very glad to see such many positive reactions.
We should consider about English version of the articles.




--
View this message in context: http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p873.html
Sent from the CF Dev mailing list archive at Nabble.com.


James Bayer
 

what an exciting effort!

lots of things work with CF, it's just a matter of curating some good
information.

maybe i can get Yudai to pair with me on some translations!

On Thu, Jul 23, 2015 at 10:41 PM, Noburou TANIGUCHI <dev(a)nota.m001.jp>
wrote:

Thank you, all.

I am very glad to see such many positive reactions.
We should consider about English version of the articles.




--
View this message in context:
http://cf-dev.70369.x6.nabble.com/cf-dev-Did-anybody-deploy-a-wiki-as-app-to-CF-tp643p873.html
Sent from the CF Dev mailing list archive at Nabble.com.
_______________________________________________
cf-dev mailing list
cf-dev(a)lists.cloudfoundry.org
https://lists.cloudfoundry.org/mailman/listinfo/cf-dev


--
Thank you,

James Bayer