-
Notifications
You must be signed in to change notification settings - Fork 0
First Library App
Jeremy Nelson edited this page Apr 29, 2013
·
2 revisions
This mini-tutorial will go through the steps to develop a simple library app in an Aristotle Library App project.
- Follow the directions for downloading and installing the Aristotle Library Apps project.
-
From the command line when you have your development virtual env loaded, create a Django application with the name of your application.
python manage.py startapp {name-of-your-app} -
Change directories to your new app directory and create a templates directory
cd {name-of-your-app}mkdir templates -
Create an assets directory for custom stylesheets, javascript, images, and other media for your app.
mkdir assetsGo to the new assets directory
cd assets -
In the
settings.pyfile in the aristotle app directory, search for the template directories