oh my god
Go to file
warlord-hash 032f0285ed Add rendering 2020-08-24 12:58:43 +02:00
config XSS Protection and OutLink protection 2020-08-13 17:34:05 +10:00
frontend router.go after scrub 2020-08-23 23:03:38 +10:00
frontend2 Disable staff applications 2020-08-19 20:10:29 +10:00
frontend3 update 2020-08-23 20:11:57 +10:00
lib fix few things and fix that damn banner 2020-08-22 21:45:32 +10:00
migrations Delete 20200822093939-emailunique.js 2020-08-22 21:47:23 +10:00
models update 2020-08-23 20:11:57 +10:00
rendering Add rendering 2020-08-24 12:58:43 +02:00
routes Add rendering 2020-08-24 12:58:43 +02:00
.gitignore commit 2020-08-24 16:22:32 +10:00
Procfile Initial Commit 2020-08-07 12:36:34 +10:00
README.md Update README with Install and Updating steps for development environments. 2020-08-14 21:20:41 +10:00
licenses.html Final Commit before beta release 2020-08-17 00:26:13 +10:00
package-lock.json Major improvements 2020-08-08 21:57:42 +10:00
package.json update 2020-08-23 20:11:57 +10:00
server.js update 2020-08-23 20:11:57 +10:00
yarn.lock update 2020-08-23 20:11:57 +10:00

README.md

Kaverti Website

Install Steps

  1. Clone somewhere
  2. Setup MySQL
  3. Update config/config.json with DB credentials
  4. Run yarn install in the website folder, and yarn install in the frontend folder.
  5. Run sequelize db:migrate in the root website folder to import all the tables to the database.
  6. Using your preferred MySQL management software, Insert a row into the settings table with the Kaverti settings.
  7. Run node . in the root website folder, alternatively you can create a Linux systemctl service, and run yarn serve in the frontend folder for a development frontend web server (Make sure vue-cli is installed).
  8. If you're ready for production, you can run yarn build in the frontend folder to build the frontend and you can upload that to a static web hosting service of your choice, I recommend Netlify.\

Updating

  1. Stop all Kaverti services
  2. Run git pull in the website root directory
  3. Start all Kaverti services