Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 649 Bytes

README.md

File metadata and controls

31 lines (26 loc) · 649 Bytes

Rogue-Tinoite

Tinoite but it's gone rogue

Install:

First, install the dependencies:

~$ npm install

Start the Postgre service, if you're using arch linux, just run:

~$ systemctl start postgresql.service

Then, create a user. If you don't want to tweak up the config files, create a user named 'me' with:

~$ psql postgres
~$ CREATE ROLE me WITH LOGIN PASSWORD 'password';`
~$ ALTER ROLE me CREATEDB;`

Go to the root folder and run the DB Migrations.

~$ npx sequelize db:create
~$ npx sequelize db:migrate

Run the server:

~$ npx nodemon src/server.js