From e12fbf3fa7f54b1b7dcfdccd5314ebd081758a44 Mon Sep 17 00:00:00 2001 From: Troplo Date: Fri, 29 Jul 2022 23:26:46 +1000 Subject: [PATCH] fix --- README.md | 4 +++- cli/index.js | 1 - cli/package.json | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cfce161..c17d4c2 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,9 @@ Colubrina is a simple self-hostable chatting platform written in Vue, and Vuetif QuickSwitcher with AMOLED theme ## Backend setup First, configure a database and user (MariaDB strongly recommended) for Colubrina.
-Please navigate to the `cli` folder, and run the following commands: +Please navigate to the `backend` folder and run `yarn`.
+ +Then navigate to the `cli` folder, and run the following commands: ``` yarn diff --git a/cli/index.js b/cli/index.js index 0a08bd1..571df05 100644 --- a/cli/index.js +++ b/cli/index.js @@ -4,7 +4,6 @@ const path = require("path") const { Umzug, SequelizeStorage } = require("umzug") const { Sequelize } = require("sequelize") const argon2 = require("argon2") -const { User } = require("../backend/models") const axios = require("axios") const os = require("os") const { execSync } = require('child_process'); diff --git a/cli/package.json b/cli/package.json index bcbc587..e59a2c7 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,5 +1,5 @@ { - "name" : "colubrina-cli", + "name": "colubrina-cli", "private": true, "dependencies": { "argon2": "^0.28.7",