Installation
If you are working on Qore framework itself you can follow the steps below to set up your local environment.
Run the installation steps as described in the Getting Started Installation guide.
Next, configure the application to use a local checkout of the framework package:
- Clone the Qore framework into
packages/framework(git@git.qlic.nl:qore-next/framework.git). - Update the
qore-next/systemversion todev-mainincomposer.json. - Add a local repository reference to
composer.jsonand runcomposer update.
"repositories": {
"qore/next": {
"type": "path",
"url": "./packages/framework/src/system",
"options": {
"symlink": true
}
},
"packistry": {
"type": "composer",
"url": "https://packistry.qlic.nl"
}
},
- Update
vite.config.tsand setqoreNextPathto./packages/framework/src/system/resources/js.