See also:
Service | Type | RAM | Storage | Limitations |
---|---|---|---|---|
👉 Adaptable | PaaS | 256 MB | Non-persistent? (1 GB database storage available) | |
AWS EC2 | IaaS | 1 GB |
See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
/*------------------------------------------ | |
Responsive Grid Media Queries - 1280, 1024, 768, 480 | |
1280-1024 - desktop (default grid) | |
1024-768 - tablet landscape | |
768-480 - tablet | |
480-less - phone landscape & smaller | |
--------------------------------------------*/ | |
@media all and (min-width: 1024px) and (max-width: 1280px) { } | |
@media all and (min-width: 768px) and (max-width: 1024px) { } |
logging.level.root=INFO | |
spring.datasource.url:jdbc:firebirdsql:localhost/3050:D:\\database\\petra.FDB | |
spring.datasource.driverClassName:org.firebirdsql.jdbc.FBDriver | |
spring.datasource.username:SYSDBA | |
spring.datasource.password:masterkey | |
spring.jpa.hibernate.ddl-auto:update | |
spring.jpa.show-sql: true | |
spring.jpa.properties.hibernate.format_sql=true |