Skip to content

mitild/ita-wiki

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ITA Wiki

Quicklinks:

Important procedures and meetings

  • We have a daily at 9.00AM everyday and it is mandatary to assist.
  • We have a sprint planning once each two weeks, preferably on mondays.
  • We have a sprint review (retro) once each two weeks, preferably on thursdays.

Frontend and Backend

Use Node 18.

Frontend Development

Frontend developers are responsible for creating and maintaining the user interface, ensuring that the website is visually appealing, user-friendly, and responsive. Our frontend is built with React, Vite, and Vitest. We also use an atomic design system and a CI/CD pipeline to lint, test, build, and deploy the project on the development environment.

Frontend Libraries and Tools

  • React: A JavaScript library for building user interfaces.
  • Vite: A build tool and development server that focuses on speed and simplicity.
  • Vitest: A testing framework designed to work seamlessly with Vite.
  • Atomic Design System: A methodology for creating design systems by breaking down components into atoms, molecules, and organisms.

Backend Development

Backend developers are responsible for managing the data, logic, and server-side infrastructure of the website. They ensure that data is transferred smoothly between the frontend and backend, as well as handle database management, API integration, and server-side programming. Our backend stack includes Koa, Prisma (ORM), Supertest, Docker, PostgreSQL, and bash terminal, with a basic routing/router/repo folder structure.

Backend Libraries and Tools

  • Koa: A lightweight and flexible web framework for Node.js.
  • Prisma: A modern ORM (Object Relational Mapping) library that simplifies database management and data querying.
  • Supertest: A library for testing HTTP servers and APIs, making it easy to assert, test, and simulate HTTP requests and responses.
  • Docker: A platform that simplifies the process of building, shipping, and running applications in containers, ensuring consistency across different environments.
  • PostgreSQL: A powerful, open-source object-relational database system.
  • Bash Terminal: A command-line interface for interacting with the operating system, executing commands, and running scripts.

In both frontend and backend, we use Zod schemas for validation, which provides a convenient and efficient way to ensure data consistency and integrity across the application.

Work Breakdown Structure (WBS) and Onboarding

The Work Breakdown Structure (WBS) is a key project management tool that helps us break down tasks and deliverables into manageable units. This approach allows for better organization, tracking, and allocation of resources. Our onboarding process may seem challenging, but it is crucial in understanding the project structure, workflow, and coding standards.

By going through this onboarding process, you'll:

  • Gain a comprehensive understanding of the project's goals and requirements.
  • Learn how to collaborate effectively with the team.
  • Familiarize yourself with the tools and technologies used in the project.
  • Be better prepared to contribute meaningfully and efficiently to the project.

Being Proactive

While we encourage collaboration and support among team members, it's important for you to be proactive in your learning and problem-solving. Before reaching out for help, try to search for answers on Google and Stack Overflow. These resources contain a wealth of information and can often help you solve issues on your own. By doing so, you'll develop your problem-solving skills and become a more self-sufficient developer.

How to work with GIT

  1. When new features or fixes are required we create a new issue.
  2. Issues are assigned to one person.
  3. The number of the issue is created as a new branch name following git branch naming conventions: https://deepsource.io/blog/git-branch-naming-conventions/
  4. Once the issue is resolved, a new pull-request from your branch to main is required.

Setup ESLint in VSCode

  1. Install the ESLint VSCode extension.
  2. In the root folder of the whole project create a .vscode folder.
  3. Create a settings.json file in the .vscode folder with the following content:
{
    "eslint.workingDirectories": ["front", "back"]
}

The code above allows the ESLint VSCode extension to properly find each ESLint project configuration file. This will help ensure that you're following the project's coding standards and guidelines as you contribute to the project.

With this guide, we hope you feel better prepared to contribute to our project. Remember, don't hesitate to ask questions and reach out for support if needed. We're excited to have you on board and look forward to your contributions!

About

la wiki de la IT Academy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.4%
  • Shell 1.3%
  • HTML 0.3%