oh my god
Go to file
main1 1e58096097 Fixes 2020-10-24 15:45:47 +11:00
admin 0.172 2020-10-08 22:17:15 +11:00
config Fixes 2020-10-24 15:45:47 +11:00
controllers 0.176-prerelease3 2020-10-18 15:41:36 +11:00
frontend adsada 2020-10-24 01:31:59 +11:00
kaverti_modules 0.175-prerelease-backend 2020-10-12 18:29:53 +11:00
lib prod 2020-10-24 01:16:40 +11:00
migrations Fixes 2020-10-24 15:45:47 +11:00
models 0.176 2020-10-24 01:07:21 +11:00
rendering merge render to master and make it ready for prod server 2020-08-24 21:29:44 +10:00
routes Fixes 2020-10-24 15:45:47 +11:00
socket_routes 0.176-prerelease3 2020-10-18 15:41:36 +11:00
.gitignore Fixes 2020-10-24 15:45:47 +11:00
Procfile Initial Commit 2020-08-07 12:36:34 +10:00
README.md Update 'README.md' 2020-09-29 13:07:55 +00:00
kaverti-example.service Add example Linux service 2020-10-01 17:40:15 +10:00
licenses.html Final Commit before beta release 2020-08-17 00:26:13 +10:00
package-lock.json Bump sequelize from 3.35.1 to 5.15.1 2020-09-09 14:11:39 +00:00
package.json 0.176 2020-10-24 01:07:21 +11:00
preview.html 0.172 2020-10-08 22:17:15 +11:00
server.js 0.176 2020-10-24 01:07:21 +11:00
start.sh Fixes 2020-10-24 15:45:47 +11:00
yarn.lock 0.176 2020-10-24 01:07:21 +11: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