Sobes.tech
Junior — Middle

What technologies and tools were included in your tech stack at your previous job?

sobes.tech AI

Answer from AI

In my previous project, the technology stack included:

  • Programming language: Python 3.8+
  • Web framework: Django for server-side development
  • Databases: PostgreSQL for data storage
  • ORM: Django's built-in ORM
  • Version control systems: Git, GitHub for collaboration
  • Containerization: Docker for environment isolation
  • Testing tools: pytest for writing unit tests

Example of a simple Django model:

from django.db import models

class Product(models.Model):
    name = models.CharField(max_length=100)
    price = models.DecimalField(max_digits=10, decimal_places=2)

    def __str__(self):
        return self.name