mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-23 03:36:42 +11:00
fix
This commit is contained in:
parent
448a783222
commit
e12fbf3fa7
3 changed files with 4 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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');
|
||||||
|
|
Loading…
Reference in a new issue