This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
Server DB Setup #22
Labels
documentation
Improvements or additions to documentation
good first issue
Good for newcomers
wontfix
This will not be worked on
Using Fluent
Install PostgreSQL
Setup DB and User
brew install postgresql
psql -U postgres
create database vapor_database;
\c vapor_database;
create user oneleif_dev with encrypted password 'oneleif_password';
grant all privileges on database vapor_database to oneleif_dev;
\q
Finally
vapor run
The text was updated successfully, but these errors were encountered: