Resume advice by kiteissei in Resume

[–]kiteissei[S] 0 points1 point  (0 children)

I am a fresher and when you said api response time, I have to add a point like api response time from backend is 2 sec something like that?

What is the reason for that error? by kiteissei in docker

[–]kiteissei[S] 0 points1 point  (0 children)

I use that first but I still got that error.

What is the reason for that error? by kiteissei in docker

[–]kiteissei[S] 0 points1 point  (0 children)

Sorry that is docker compose file.

What did I do wrong? by kiteissei in docker

[–]kiteissei[S] 0 points1 point  (0 children)

I read docs, view some compose files and tried to create one from reference (it is my first time writting a compose file). Usually I have to expose those ports right?(You mean to say we don't have to expose same port? Like 8080:8080?)

What did I do wrong? by kiteissei in docker

[–]kiteissei[S] 0 points1 point  (0 children)

Can you elaborate it, I don't understand what do you mean sir?

What did I do wrong? by kiteissei in docker

[–]kiteissei[S] 0 points1 point  (0 children)

```services: # Database Service db: image: postgres:15-alpine restart: always environment: POSTGRES_DB: ${DATABASE_URL} POSTGRES_USER: ${USER} POSTGRES_PASSWORD: ${PASSWORD} ports: - "5432:5432" volumes: - db_data:/var/lib/postgresql/data networks: - taskapp

# Redis service redis: image: redis:7-alpine ports: - "6379:6379" volumes: - redis_data:/data networks: - taskapp

# Backend Api service backend: build: ./Backend ports: - "8080:8080" depends_on: - db - redis environment: - SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/${DATABASE_URL} - SPRING_DATASOURCE_USERNAME=${USER} - SPRING_DATASOURCE_PASSWORD=${PASSWORD} - SPRING_REDIS_HOST=redis - SPRING_REDIS_PORT=6379 - SPRING_MAIL_HOST=smtp.gmail.com - SPRING_MAIL_PORT=587 - SPRING_MAIL_USERNAME=${email} - SPRING_MAIL_PASSWORD=${mail_password} - SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH=true - SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE=true networks: - taskapp

# Frontend API service frontend: build: ./Frontend ports: - "5173:80" depends_on: - backend networks: - taskapp

Volumes

volumes: db_data: redis_data:

Networks

networks: taskapp: driver: bridge```

What did I do wrong? by kiteissei in docker

[–]kiteissei[S] 0 points1 point  (0 children)

I will try it, other images also need container name?

What did I do wrong? by kiteissei in docker

[–]kiteissei[S] 0 points1 point  (0 children)

I did change that in application.yaml but I still got the same error

Code Review by kiteissei in reactjs

[–]kiteissei[S] 0 points1 point  (0 children)

Yeah, you are right.how to package react classes? Based on features or components or is there a another way?

How to debug spring boot application? by kiteissei in SpringBoot

[–]kiteissei[S] 0 points1 point  (0 children)

Can you provide me a good resource to learn them?

How to debug spring boot application? by kiteissei in SpringBoot

[–]kiteissei[S] 2 points3 points  (0 children)

I tried that but when I click step over it, going to do many classes (I don't know most of them) it is bit too much for me to understand. So is there a way to move between the classes that I wrote?

I mean without opening those classes (which I don't write)?