Hi,
I'm wondering about what individual steps are equivalent to loading the sample
data?
Some steps I've tried (perhaps I used seeds I didn't need...however, I
configured for PostgreSQL so I assume "ext" for that):
...build, load default demo data, browse...
./gradlew cleanAll
./gradlew "ofbiz --load-data readers=seed,seed-initial,ext"
That much seems to work. This step fails (I have PostgreSQL set up with
user/pass ofbiz/ofbiz and config has been set up and was working with this so
entityengine.xml is tested as correct):
./gradlew createTenant -PtenantId=admin -PtenantName="admin"
-PdomainName=com.example -PtenantReaders=seed,seed-initial,ext -PdbPlatform=P
-PdbIp=127.0.0.1 -PdbUser=ofbiz -PdbPassword=ofbiz
Since this latter step fails, should I do something else before creating an
admin user, or is the issue one of an error in my syntax?
I'm essentially trying to get to a point where I can reach this URL and add
Company and other items manually:
https://localhost:8443/ofbizsetup/control/initialsetup
Thanks!