In this guide, we'll walk through setting up password authentication for your Graphweaver project.
This guide will also use an Sqlite database as an example data provider. Feel free to follow along or replace with your own data source as needed.
Let’s get started.
Prerequisites
- Node.js and npm/pnpm: Make sure you have Node.js 20 or above along with npm and pnpm (8+) installed on your system.
- Some of the commands use
curl
and sqlite3
from the command line. These can be substituted with your own tools if you do not have them
Steps
Initialise a New Graphweaver Project
npx graphweaver@latest init
- You'll be prompted to name your project (e.g., passwordExample ).
- For this example choose the "Mikro-orm Sqlite backend". However, if you have a different datasource then use that.
- Confirm the creation of the new Graphweaver app.
Install Dependencies