Setup¶
Prepare & Run¶
All commands can run with package.sh scripts what you want. All of these scripts has --help argument for
available getting some info about the current module.
- Clone repo, or download & extract a release
.tar.gzfile- Install all dependencies:
./package.sh -p install- Check the
config/config.ymlfor database and other settings- Prepare database:
./package.sh upgrade_database- Start server:
./package.sh start
Now, you can open the WebUI: http://localhost:8000/storekeeper
Details¶
Basically, the install command consists of preinstall and postinstall parts.
preinstallchecks/prepares system components forpostinstallandstart. This command has only one dependency, an DEB based system (for apt-get install).postinstallchecks/prepares external dependencies (e.g. Python, Bower modules).
You can modify installing method with this arguments:
--globalmakes changes on system instead of virtual environments.--productioninstalls dependencies for production running only (e.g. did not install unit test framework)