Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.24 KB

File metadata and controls

54 lines (37 loc) · 1.24 KB

image-backend

It is written in Java 11 using Spring Boot framework. It is deployed and published with AWS Elastic Beanstalk.

Links


Setup

Environment

Requirements

  • Amazon Corretto 11
  • MySql Database
  • S3 Space

Instructions

  • Clone repository.
  • Open project with Intellij Idea and let it install maven dependencies.

Database

Naming Convention

  • Table:
    • Model: PascalCase (singular) (CompanyUser)
    • SQL: snake_case (plural) (example: company_users)
  • Column:
    • Model: camelCase (refreshToken)
    • SQL: snake_case (example: refresh_token)