{"id":18285117,"url":"https://github.com/samlet/ofbiz-launcher","last_synced_at":"2025-04-09T06:14:07.627Z","repository":{"id":95955202,"uuid":"224803018","full_name":"samlet/ofbiz-launcher","owner":"samlet","description":"ofbiz launcher project","archived":false,"fork":false,"pushed_at":"2019-11-29T07:48:36.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-15T00:29:18.098Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/samlet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-29T07:46:29.000Z","updated_at":"2019-11-29T07:48:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"69d2ef71-8e7f-4d05-8292-ae9054c274b6","html_url":"https://github.com/samlet/ofbiz-launcher","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samlet%2Fofbiz-launcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samlet%2Fofbiz-launcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samlet%2Fofbiz-launcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samlet%2Fofbiz-launcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samlet","download_url":"https://codeload.github.com/samlet/ofbiz-launcher/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247987285,"owners_count":21028895,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T13:15:47.002Z","updated_at":"2025-04-09T06:14:07.612Z","avatar_url":"https://github.com/samlet.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# procs.md\n* [Home - OFBiz Project Open Wiki - Apache Software Foundation](https://cwiki.apache.org/confluence/display/OFBIZ/Home)\n* [OFBiz Features - OFBiz Project Open Wiki - Apache Software Foundation](https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Features)\n\n* [The Apache OFBiz® Project - Source Repository](http://ofbiz.apache.org/source-repositories.html)\n\t* [apache/ofbiz-framework: Mirror of Apache OFBiz Framework](https://github.com/apache/ofbiz-framework)\n\t* [apache/ofbiz-plugins: Mirror of Apache OFBiz Plugins](https://github.com/apache/ofbiz-plugins)\n* [The Apache OFBiz® Project - Developers](http://ofbiz.apache.org/developers.html)\n* [apache/ofbiz-framework: Mirror of Apache OFBiz Framework](https://github.com/apache/ofbiz-framework)\n* [Apache OFBiz技术生产设置指南 - OFBiz项目开放维基 - Apache软件基金会](https://cwiki.apache.org/confluence/display/OFBIZ/Apache+OFBiz+Technical+Production+Setup+Guide#ApacheOFBizTechnicalProductionSetupGuide-RunningOFBiz)\n* [OFBiz Tutorial - A Beginners Development Guide - OFBiz Project Open Wiki - Apache Software Foundation](https://cwiki.apache.org/confluence/display/OFBIZ/OFBiz+Tutorial+-+A+Beginners+Development+Guide)\n\t最终由Mathieu Lirzin修改于四月19,2018\n\t本教程适用于具有很少或没有OFBiz经验的初学者。它涵盖了OFBiz应用程序开发过程的基础知识。目标是使开发人员熟悉最佳实践，编码约定，基本控制流以及开发人员对OFBiz定制所需的所有其他方面。\n\t本教程将帮助您在OFBiz中构建您的第一个“演示应用程序”。\n\n## notices\nOFBiz分为两个存储库：\n\tofbiz-framework：包含核心框架和系统中的主要应用程序，如会计，派对，订单等\n\tofbiz-plugins：从“特殊用途”重命名，包含社区正式支持的可选组件\n\n此外，删除了热部署目录，因为plugins目录可以替代“特殊用途”和“热部署”。\n如果需要按特定顺序在plugins目录中加载组件，请在plugins目录中放置component-load.xml文件，列出顺序。\n要从源代码管理中检出插件，请使用pullPluginSource Gradle任务。要从源代码管理中检出所有插件，请使用pullAllPluginsSource。注意这会删除以前存在的插件目录。\n\n## start\n- NOTE: The default user login is \"admin\" and password \"ofbiz\". All demo user logins such as DemoCustomer, DemoSupplier, DemoEmployee etc have the default password \"ofbiz\"\n\n```sh\ncd ofbiz-framework/\n# OFBiz for the first time as it needs to download all dependencies\n# ./gradlew cleanAll loadAll   # cleanAll会删除derby的数据库\n./gradlew loadAll\n# Start OFBiz\n./gradlew ofbiz\n\n# 有许多方法可以运行OFBiz，它们都归结为执行“build / libs / ofbiz.jar”可执行JAR文件的一些变体。\njava -jar build/libs/ofbiz.jar\n\n# 要仅运行一个组件的测试运行（对于实体组件）：\ngradlew \"ofbiz --test component=entity\"\n# or\njava -jar build/libs/ofbiz.jar --test component=entity\n```\n\n- Visit OFBiz through your browser:\n\n\thttps://localhost:8443/ordermgr [Order Back Office]\n\thttps://localhost:8443/accounting [Accounting Back Office]\n\thttps://localhost:8443/webtools [Administrator interface]\n\n\tYou can log in with the user *admin* and password *ofbiz*.\n\n## build commands\n```sh\n# OFBiz server commands require \"quoting\" the commands. For example: gradlew \"ofbiz --help\"\n./gradlew \"ofbiz --help\"\n\n# Shortcuts to task names can be used by writing the first letter of every word in a task name. However, you cannot use the shortcut form for OFBiz server tasks. Example: gradlew loadAdminUserLogin -PuserLoginId=myadmin = gradlew lAUL -PuserLoginId=myadmin\n./gradlew loadAdminUserLogin -PuserLoginId=myadmin\n./gradlew lAUL -PuserLoginId=myadmin\n\n# Dependent tasks can be skipped with the -x switch. Example: gradlew build -x test does not run the tests within the build.\n./gradlew build -x test\ngradlew cleanAll loadAll testIntegration\n\n# Example OFBiz server tasks\ngradlew \"ofbizDebug --test\"\ngradlew \"ofbizBackground --start --portoffset 10000\"\ngradlew \"ofbiz --shutdown --portoffset 10000\"\n# gradlew ofbiz (default is --start)\ngradlew cleanAll loadAll \"ofbiz --start --portoffset 10000\"\n\n##  List all available tasks from the build system\n./gradlew tasks\n## List all available projects in the build system\n./gradlew projects\n\n## Shutdown OFBiz\ngradlew \"ofbiz --shutdown\"\n## Get OFBiz status\n./gradlew \"ofbiz --status\"\n\n## Force OFBiz shutdown\n# Terminate all running OFBiz server instances by calling the appropriate operating system kill command. Use this command to force OFBiz termination if the --shutdown command does not work. Usually this is needed when in the middle of data loading or testing in OFBiz.\n# Warning: Be careful in using this command as force termination might lead to inconsistent state / data\n\n./gradlew terminateOfbiz\n```\n\n## debug\n```sh\n# Starts OFBiz in remote debug mode and waits for debugger or IDEs to connect on port 5005\ngradlew \"ofbizDebug --start\"\n# OR\ngradlew ofbizDebug\n\n## Start OFBiz on a different port\n# Start OFBiz of the network port offsetted by the range provided in the argument to --portoffset\ngradlew \"ofbiz --start --portoffset 10000\"\n```\n\n## background\n```sh\n# Start OFBiz in the background by forking it to a new process and redirecting the output to runtime/logs/console.log\n\ngradlew \"ofbizBackground --start\"\n# OR\n./gradlew ofbizBackground\n\n# You can also offset the port, for example:\ngradlew \"ofbizBackground --start --portoffset 10000\"\n```\n\n## runtime options\n```sh\n# You can pass JVM runtime options by specifying the project property -PjvmArgs.\ngradlew ofbiz -PjvmArgs=\"-Xms1024M -Xmx2048M\" -Dsome.parameter=hello\n\n# If you do not specify jvmArgs, a default of -Xms128M -Xmx1024M is set.\n```\n\n## data loading\n- https://github.com/apache/ofbiz-framework#data-loading-tasks\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamlet%2Fofbiz-launcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamlet%2Fofbiz-launcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamlet%2Fofbiz-launcher/lists"}