Kaverti Website https://kaverti.com
Go to file
Troplo 6bf43f1a58 Update 'v2_routes/link_preview.js' 2021-07-06 02:01:19 +10:00
admin 0.172 2020-10-08 22:17:15 +11:00
config Change API port 2021-04-09 23:33:38 +10:00
controllers 0.177-prerelease (UPGRADE FROM SEQUELIZE V3 to V5, REWRITE MODELS) 2020-11-22 17:48:11 +11:00
kaverti_modules 0.175-prerelease-backend 2020-10-12 18:29:53 +11:00
legacyfrontend Merge branch 'canary' 2021-04-09 23:34:49 +10:00
lib Password changing 2021-04-11 21:55:50 +10:00
migrations Provide feedback 2021-02-04 21:52:18 +11:00
models Password changing 2021-04-11 21:55:50 +10:00
rendering 1.0.0-prerelease4 2021-02-04 18:24:22 +11:00
socket_routes 0.176-prerelease3 2020-10-18 15:41:36 +11:00
v1_routes Update 'v1_routes/link_preview.js' 2021-07-06 02:00:40 +10:00
v2_routes Update 'v2_routes/link_preview.js' 2021-07-06 02:01:19 +10:00
.gitignore dependency updates 2021-01-06 18:50:45 +11: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
nodeinfo-example.json dependency updates 2021-01-06 18:50:45 +11:00
package.json Item Uploading (Hats) 2021-01-21 00:07:48 +11:00
server.js Remove unnecessary files 2021-04-10 13:45:44 +10:00
start.sh Fixes 2020-10-24 15:45:47 +11:00
yarn.lock Item Uploading (Hats) 2021-01-21 00:07:48 +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