Skip to content

palveeen22/Server-TS-PrismaORM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Test-DayaTani-be

HOW TO USE

  1. Clone the repository and run npm run i or yarn add

  2. Create .env file and paste

    DATABASE_URL=<your DB username>
    APP_PORT=<your port>
    AUTH_USERNAME=< your username>
    AUTH_PASSWORD=< your password>

  3. Connect your database postgresql:https://USER:PASSWORD@HOST:PORT/DATABASE?schema=SCHEMA Here's a short explanation of each component:

    • USER: The name of your database user
    • PASSWORD: The password for your database user
    • HOST: The name of your host name (for the local environment, it is localhost)
    • PORT: The port where your database server is running (typically 5432 for PostgreSQL)
    • DATABASE: The name of the database
    • SCHEMA: The name of the schema inside the database
  4. Migrate your data base using : npx prisma migrate dev

  5. Seed to your data base and Install prisma client using : npm install @prisma/client npx prisma db seed

  6. Acces to endpoints using postman To access authentication :

    • Open Postman and create a new request.
    • Enter your server's URL.
    • Under the "Authorization" tab, select "Basic Auth" from the Type dropdown.
    • Enter the AUTH_USERNAME and AUTH_PASSWORD you specified in your .env file.
    • Send the request.
    • If the credentials are correct, Postman will show the server's response. Otherwise, it will show a 401 Unauthorized error.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages