3.3. Create Your First XBlock

Before you continue, make sure that you have set up the XBlock SDK. You then create the XBlock and deploy it in the XBlock SDK.

3.3.1. Create an XBlock

You use the XBlock SDK to create skeleton files for an XBlock. To do this, follow these steps at a command prompt.

  1. Change to the xblock_development directory, which contains the venv and xblock-sdk subdirectories.

  2. Run the following command to create the skeleton files for the XBlock.

    (venv) $ xblock-sdk/bin/workbench-make-xblock
    

    Instructions in the command window instruct you to determine a short name and a class name. Follow the guidelines in the command window to determine the names that you want to use.

    You will be prompted for two pieces of information:
    
    * Short name: a single word, all lower-case, for directory and file
      names. For a hologram 3-D XBlock, you might choose "holo3d".
    
    * Class name: a valid Python class name.  It's best if this ends with
      "XBlock", so for our hologram XBlock, you might choose
      "Hologram3dXBlock".
    
    Once you specify those two names, a directory is created in the
    ``xblock_development`` directory containing the new project.
    
    If you don't want to create the project here, or you enter a name
    incorrectly, type Ctrl-C to stop the creation script.  If you don't want
    the resulting project, delete the directory it created.
    
  3. At the command prompt, enter the Short Name you selected for your XBlock.

    $ Short name: myxblock
    
  4. At the command prompt, enter the Class name you selected for your XBlock.

    $ Class name: MyXBlock
    

The skeleton files for the XBlock are created in the myxblock directory. For more information about the XBlock files, see Anatomy of an XBlock.

3.3.2. Install the XBlock

After you create the XBlock, you install it in the XBlock SDK.

In the xblock_development directory, use pip to install your XBlock.

(venv) $ pip install -e myxblock

You can then test your XBlock in the XBlock SDK.

3.3.3. Create the SQLite Database

Before running the XBlock SDK the first time, you must create the SQLite database.

  1. In the xblock_development directory, run the following command to create the database.

    (venv) $ python xblock-sdk/manage.py syncdb
    
  2. You are prompted to indicate whether or not to create a Django superuser.

    You just installed Django's auth system, which means you don't have any
    superusers defined. Would you like to create one now? (yes/no):
    
  3. Enter no.

    (venv) $ python no
    

3.3.4. Run the XBlock SDK Server

To see the web interface of the XBlock SDK, you must run the SDK server.

In the xblock_development directory, run the following command to start the server.

(venv) $ python xblock-sdk/manage.py runserver

Note

If you do not specify a port, the XBlock SDK server uses port 8000. To use a different port, specify it in the runserver command.

Then test that the XBlock SDK is running. In a browser, go to http://localhost:8000. You should see the following page.

The XBlock SDK home page.

The page shows the XBlocks installed automatically with the XBlock SDK. Note that the page also shows the MyXBlock XBlock that you created in Create Your First XBlock.

3.3.4.1. Get Help for the XBlock SDK Server

To get help for the XBlock SDK runserver command, run the following command.

(venv) $ python xblock-sdk/manage.py help

The command window lists and describes the available commands.

3.3.5. Next Steps

You have now completed the Getting Started section of the XBlock tutorial. In the next sections, you will learn how to use the XBlock SDK, about the anatomy of an XBlock, and how to customize your new XBlock.