No description
  • JavaScript 57.4%
  • Vue 36.6%
  • SCSS 5.3%
  • HTML 0.4%
  • Dockerfile 0.3%
Find a file
aptalca 882cd1329e
Merge pull request #554 from Roxedus/master
Remove dependabot attempt 2, electric boogaloo
2023-02-08 08:45:49 -05:00
.github/workflows Remove dependabot attempt 2, electric bogaloo 2023-02-06 10:59:50 +01:00
bin Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
config printWidth and htmlWhitespaceSensitivity 2020-05-16 15:11:02 -05:00
middleware fix: root domain detection 2021-09-13 14:02:06 +10:00
migrations Fully fixed the introduced issue with my last commit 2021-04-13 01:00:43 +03:00
models Initial permissions support on backend/frontend 2021-04-20 10:53:53 +03:00
public Transition to Quasar API CLI v2 2020-09-01 17:32:36 -04:00
root/etc Build and push docker images for commit and PRs 2021-12-06 21:23:41 -05:00
routes fix: root domain detection 2021-09-13 14:02:06 +10:00
scripts Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
seeders changed variable name for default link target, implemented link target for Tile.vue 2021-04-12 13:57:41 +03:00
src fix: root domain detection 2021-09-13 14:02:06 +10:00
tests PR required fixes 2021-04-21 10:07:26 +03:00
.babelrc Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
.editorconfig Initial commit 2020-02-11 15:37:17 +00:00
.env.example default BACKEND_URL needs to be '/' to work properly with building default container as this is baked into the client build. 2021-08-09 19:29:29 -04:00
.eslintignore Initial commit 2020-02-11 15:37:17 +00:00
.eslintrc.js Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
.gitattributes Create .gitattributes 2020-04-08 09:00:55 +01:00
.gitignore fixed file uploads for avatars 2020-02-22 10:49:02 -05:00
.postcssrc.js Initial commit 2020-02-11 15:37:17 +00:00
.prettierignore Add npm scripts to format before build 2020-05-14 11:02:23 -05:00
.prettierrc printWidth and htmlWhitespaceSensitivity 2020-05-16 15:11:02 -05:00
.sequelizerc Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
.stylintrc Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
app.js Frontend fixes, tiles form cleanup 2021-05-07 09:39:25 +03:00
babel.config.js Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
crowdin.yml Update Crowdin configuration file 2020-05-12 17:05:29 +01:00
Dockerfile add ghcr repo label 2021-12-06 21:30:55 -05:00
enhanced.js fix: root domain detection 2021-09-13 14:02:06 +10:00
jest.config.js Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
jsconfig.json Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
package-lock.json Bump stylelint-config-prettier from 8.0.2 to 9.0.3 2021-12-20 03:49:13 +00:00
package.json Bump stylelint-config-prettier from 8.0.2 to 9.0.3 2021-12-20 03:49:13 +00:00
passport.js Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
quasar.conf.js Transition to Quasar API CLI v2 2020-09-01 17:32:36 -04:00
quasar.extensions.json Add code formatting dev dependencies and pre-commit hooks 2020-05-04 14:34:13 -05:00
README.md Update README.md 2020-09-22 11:00:09 +01:00
searchproviders.json Merge remote-tracking branch 'origin/master' into pre-commit 2020-05-14 10:11:50 -05:00

Heimdall (heimdall)

Heimdall is an application management portal for all your web applications. This version is the JavaScript rewrite of the original PHP version of Heimdall.

Development Environment Setup

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 install

Install

npm run setup

When 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/

Run the backend server

npm run server

By default both the server and frontend will be accessible on port 3000

Start the front end app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Front 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

Lint the files

yarn run lint

Run unit tests

yarn test

Build the app for production

quasar build

Rebuild database tables (in case of schema/data changes)

Install the sequelize-cli, or use npx:

sequelize-cli db:seed:undo
sequelize-cli db:seed:all

Running 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.