Skip to content

karuto/appinventor-sources

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Welcome to the Source code of MIT App Inventor

##Introduction

Learn more about MIT App Inventor.

This code is designed to be run in Google's App Engine. MIT runs a public instance that all are welcome to use to build App Inventor Applications. You do not need to compile or use this code if you wish to build MIT App Inventor applications.

We provide this code for reference and for experienced people who wish to operate their own App Inventor instance.

This code is tested and known to work with Oracle Java 6 and 7. There might be some issues with using OpenJDK.

##Setup instructions

This is a quick guide to get started with the sources. More detailed instructions can be found here, a slide show can be seen here, and all the documentation for the project is available in our site.

###Dependencies You will need a full Java JDK (6 or 7, preferably from Oracle; JRE is not enough) and Python to compile and run the servers.

You will also need a copy of the App Engine SDK for Java and ant.

If you want to make changes to the source, you are going to need to run an automated test suite, and for that you will also need phantomjs. Have a look at the testing section for more information.

###Forking or cloning Consider forking the project if you want to make changes to the sources. If you simply want to run it locally, you can simply clone it.

####Forking If you decide to fork, follow the instructions given by github. After that you can clone your own copy of the sources with:

$ git clone https://github.com/YOUR_USER_NAME/appinventor-sources.git

Make sure you change YOUR_USER_NAME to your user name.

Configuring a remote pointing to this repository is also a good idea if you are forking:

$ cd appinventor-sources
$ git remote add upstream https://github.com/mit-cml/appinventor-sources.git

Finally, you will also have to make sure that you are ignoring files that need ignoring:

$ cp sample-.gitignore .gitignore

###Compiling Compiling is very easy if you have all the dependencies you need; just open a terminal and type:

$ cd appinventor
$ ant

You will see a lot of stuff in the terminal and after a few minutes (it can take from 2 to 10 minutes, depending on your machine specs) you should see a message saying something like Build Successful.

###Running the server(s) There are two servers in App Inventor, the main server that deals with project information, and the build server that creates apk files. More detailed information can be found in the App Inventor Developer Overview document.

####Running the main server

$ your-appengine-SDK-folder/bin/dev_appserver.sh
        --port=8888 --address=0.0.0.0 appengine/build/war/

Make sure you change your-appengine-SDK-folder to wherever in your hard drive you have placed the App Engine SDK.

####Running the build server The build server can be run from the terminal by typing:

$ cd appinventor/buildserver
$ ant RunLocalBuildServer

Note that you will only need to run the build server if you are going to build an app as an apk. You can do all the layout and programming without having the build server running, but you will need it to download the apk.

###Accessing your local server You should now be up and running; you can test this by pointing your browser to:

http://localhost:8888

###Running tests The automated tests depend on Phantomjs. Make sure you install it and add it to your path. After that, you can run all tests by typing the following in a terminal window:

$ ant tests

##Contributing to the project Check out our open source site to find a lot more information about the project and how to contribute to it.

##Need help? Contact us through our Google Group or G+ community.

Packages

No packages published

Languages

  • JavaScript 64.8%
  • Java 26.0%
  • Standard ML 6.4%
  • Python 1.2%
  • CSS 0.9%
  • Scheme 0.7%