- run 'npm install' inside backend;
- create a .env file inside backend, copy the internals of .env.example replacing the placeholders with your database information;
- either copy the internals of backend/src/config/schema.sql and run inside your pgAdmin4 query tool or exec using psql to create the users table;
- recommended database name: 'userapi';
- run 'npm run dev' inside backend to start the backend server.
- run 'npm install' inside frontend;
- run 'npm run dev' inside frontend to start the frontend server.
UserAPI is an API intended to manage users inside the database along with authentication and authorization, the project will grow with time.
This is a mere study project created by me so I can acquire valuable knowledge in multiple tools and technologies.