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.
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.
Change to the
xblock_development
directory, which contains thevar
,xblock-env
, andxblock-sdk
subdirectories.Run the following command to create the skeleton files for the XBlock.
(xblock-env) $ 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.
At the command prompt, enter the Short Name you selected for your XBlock.
$ Short name: myxblock
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.
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.
(xblock-env) $ pip install -e myxblock
You can then test your XBlock in the XBlock SDK.
Create the SQLite Database#
Before running the XBlock SDK the first time, you must create the SQLite database.
In the
xblock_development
directory, run the following command to create the database and the tables.(xblock-env) $ python xblock-sdk/manage.py migrate
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.
(xblock-env) $ 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 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.
Get Help for the XBlock SDK Server#
To get help for the XBlock SDK runserver
command, run the following
command.
(xblock-env) $ python xblock-sdk/manage.py help
The command window lists and describes the available commands.
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.