Skip to content
This repository has been archived by the owner on Dec 11, 2021. It is now read-only.

Latest commit

 

History

History
17 lines (11 loc) · 411 Bytes

how-to-setup-strapi-with-postgres.md

File metadata and controls

17 lines (11 loc) · 411 Bytes

How to Setup Strapi with Postgres

Make sure postgres is configured and running and create a new database:

createdb backend

Then run the strapi generator:

yarn create strapi-app backend

Select postgres as your database and enter your credentials.

Once the generator runs, cd into the directory and run yarn develop. Your browser will automatically open to the user registration page.