Skip to content

Creating a new MOOSE based application

Cody Permann edited this page Feb 18, 2014 · 3 revisions
  1. Start here: https://github.com/idaholab/stork
  2. Choose a new application name. Consider the use of an acryonym. We prefer animal names for applications, but you are free to choose whatever name suits your needs.
  3. Fork the Stork!
  4. Rename your repository on Github to match your animal name (THIS IS IMPORTANT)
  • Click on your repository, then the Settings button
  • Rename your repository
  1. Clone your fork to your workstation:

    git clone https://github.com/<username>/stork.git
    
  2. Run the make_new_application.sh script.

    Note: This script will modify your cloned repository preparing it for immediate use!

    cd stork
    ./make_new_application.sh <new application name>
    
  3. Commit your changes back to your local repository and push.

    git commit -a -m 'Beginning my new application'
    git push
    

Resources:

Subscribe to our mailing list: moose-users@googlegroups.com.

You are encouraged to send us pull requests if you would like to contribute back to the MOOSE project.

Clone this wiki locally