Changeset 32e9876


Ignore:
Timestamp:
02/27/25 00:52:55 (5 weeks ago)
Author:
Naum Shapkarovski <naumshapkarovski@…>
Branches:
main
Children:
dc3406b
Parents:
87c9f1e
Message:

chore: add readme file

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.md

    r87c9f1e r32e9876  
    1 ## NODE.JS
     1# Project Setup Guide
    22
    3 - Node 16.x || 18.x
     3This guide will help you set up and run the project locally.
    44
    5 ## USING YARN (Recommend)
     5## Prerequisites
    66
    7 - yarn install
    8 - yarn dev
     7- Node.js (v16.x or v18.x)
     8- Yarn (recommended) or npm
     9- Access to project's database credentials
     10- Google Cloud credentials
    911
    10 ## USING NPM
     12## Installation Steps
    1113
    12 - npm i OR npm i --legacy-peer-deps
    13 - npm run dev
     141. **Install Dependencies**
     15
     16   ```bash
     17   yarn install
     18   # or using npm
     19   npm install --legacy-peer-deps
     20   ```
     21
     222. **Database Connection**
     23
     24   Open a terminal and run the following SSH command to establish a connection to the database:
     25
     26   ```bash
     27   ssh -L 5432:localhost:5432 t_agency_os@194.149.135.130 -N
     28   ```
     29
     30   Keep this terminal window open while working with the application.
     31
     323. **Environment Setup**
     33
     34   Update the `.env` file with your Google Cloud credentials:
     35
     36   ```env
     37   GOOGLE_APPLICATION_CREDENTIALS="/path/to/your/credentials.json"
     38   ```
     39
     404. **Generate Prisma Client**
     41
     42   ```bash
     43   yarn prisma:generate
     44   ```
     45
     465. **Seed Database (First-time setup)**
     47
     48   If you're setting up the project for the first time and the database is empty, run:
     49
     50   ```bash
     51   yarn db:seed
     52   ```
     53
     54   This will create an initial tenant and user in the database.
     55
     566. **Start Development Server**
     57   ```bash
     58   yarn dev
     59   ```
     60   The application should now be running on `http://localhost:3000`
     61
     62## Authentication
     63
     64The application uses Firebase Authentication. You can log in with the following default credentials:
     65
     66- Email: naum@mvpmasters.com
     67- Password: BnP2025~
     68
     69## Available Scripts
     70
     71- `yarn dev` - Start development server
     72- `yarn prisma:generate` - Generate Prisma client
     73- `yarn build` - Build for production
     74- `yarn start` - Start production server
     75- `yarn db:seed` - Seed the database with initial data
     76
     77## Troubleshooting
     78
     79If you encounter any issues:
     80
     81- Ensure the SSH connection to the database is active
     82- Verify your Google Cloud credentials path is correct
     83- Check if all environment variables are properly set
     84- Make sure the database is properly seeded if you're setting up for the first time
     85
     86## Support
     87
     88For additional help or questions, please contact the development team.
Note: See TracChangeset for help on using the changeset viewer.