From BlenderWiki

Jump to: navigation, search
Note: This is an archived version of the Blender Developer Wiki. The current and active wiki is available on wiki.blender.org.

Hi, I am trying to repeat similar setup on windows. requirements.txt file shows a dependency on gnureadline which is not for windows. i changed file with pyreadline and install. it worked fine. one question, i would like to ask is,could you please explain sqlalchemy_database_uri parameter slightly more detail.

class Config:

   DEBUG = True

class Development(Config):

   STORAGE_BUNDLES = '/tmp/bam_storage_bundles'
   ALLOWED_EXTENSIONS = {'txt', 'mp4', 'png', 'jpg', 'jpeg', 'gif', 'blend', 'zip'}
   SQLALCHEMY_DATABASE_URI = 'database://username:password@server/db'

i tried tweaking last line like below (after creating an empty db file) SQLALCHEMY_DATABASE_URI = 'D://bamProject/blender-asset-manager/sample.db'

any ideas, how to precisely define db file , do i need to write sqlite://// first or not.? thanks in advance