2

I have created an API using RAML and I have been able to expose it as a Web site on my local Windows laptop. However, now I need to install Mule standalone on a server an install it there. The tutorial provided for this starts with downloading an APIkit zip file (t-shirt) and placing this file on a folder on the Mule standalone. I would like to know hoe to create this APIkit zip file from a RAML API.

Any thoughts?

Thanks

fificito
  • 69
  • 1
  • 7
  • What are some things that have you tried? Please provide examples of what has/hasn't worked. – Möoz Oct 05 '16 at 22:40

2 Answers2

0

The API Kit zip file is nothing but the RAML in a regular zip file. You can install in Mule just like any other mule project. Keep the RAML in src/main/api

Charu Khurana
  • 4,511
  • 8
  • 47
  • 81
0

Deploy it like any normal Mule installation.

Once your Mule Server is up and kicking, you can deploy any apps to it within the "apps" directory:

/$MULE_HOME/apps/

And the Mule Server will automatically read them and deploy them for you.

Möoz
  • 847
  • 2
  • 14
  • 31