forked from Botanical/BotanJS
Deprecating old approach
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env python3
|
||||
import os, sys
|
||||
sys.path.append( os.path.abspath( "." ) )
|
||||
|
||||
from botanjs.service.jwork import app, JWork
|
||||
from botanjs.config import Config as config
|
||||
|
||||
SiteRoot = os.path.abspath( "." )
|
||||
|
||||
# Setting the SiteRoot for config
|
||||
config["Paths"]["SiteRoot"] = SiteRoot
|
||||
|
||||
bmap = os.path.join( config["Paths"]["Cache"], "botanjs", "bmap.xml" )
|
||||
|
||||
app.conf.update( broker_url = config["BotanJS"]["CeleryBroker"] )
|
||||
|
||||
JWork.buildClassMap.delay( config["BotanJS"]["SrcDir"], bmap )
|
||||
Reference in New Issue
Block a user