Heimdall is an application management portal for all your web applications. This version is the JavaScript rewrite of the original PHP version of Heimdall.
Building Heimdall requires a modern release of Node.js (the CI environment uses Node.js 14). Having a compatible version of Node, yarn and the @quasar/cli package installed is necessary to run the commands listed below. In addition, you will need to run this command in order to resolve the dependencies:
npm installnpm run setupWhen asked Where will the API live?, the default / will work for most people, however, if you wish to run the app in development mode set it to http://localhost:3000/
npm run serverBy default both the server and frontend will be accessible on port 3000
quasar devFront end will be accessible on port 8080. Running the app in this way does not include a backend server, so ensure you've run npm run server before starting up the front end
yarn run lintyarn testquasar buildInstall the sequelize-cli, or use npx:
sequelize-cli db:seed:undo
sequelize-cli db:seed:allRunning sequelize-cli db:seed:all multiple times will fail currently, as it is attempting to re-insert the same rows multiple times. Clear the data using db:seed:undo first.