This commit is contained in:
Troplo 2022-07-29 23:26:46 +10:00
parent 448a783222
commit e12fbf3fa7
3 changed files with 4 additions and 3 deletions

View file

@ -30,7 +30,9 @@ Colubrina is a simple self-hostable chatting platform written in Vue, and Vuetif
<img src="https://i.troplo.com/i/b2d6dd14c6b6.png" alt="QuickSwitcher with AMOLED theme" width="45%"></img> <img src="https://i.troplo.com/i/b2d6dd14c6b6.png" alt="QuickSwitcher with AMOLED theme" width="45%"></img>
## Backend setup ## Backend setup
First, configure a database and user (MariaDB strongly recommended) for Colubrina.<br> First, configure a database and user (MariaDB strongly recommended) for Colubrina.<br>
Please navigate to the `cli` folder, and run the following commands: Please navigate to the `backend` folder and run `yarn`.<br>
Then navigate to the `cli` folder, and run the following commands:
``` ```
yarn yarn

View file

@ -4,7 +4,6 @@ const path = require("path")
const { Umzug, SequelizeStorage } = require("umzug") const { Umzug, SequelizeStorage } = require("umzug")
const { Sequelize } = require("sequelize") const { Sequelize } = require("sequelize")
const argon2 = require("argon2") const argon2 = require("argon2")
const { User } = require("../backend/models")
const axios = require("axios") const axios = require("axios")
const os = require("os") const os = require("os")
const { execSync } = require('child_process'); const { execSync } = require('child_process');