Update postman collections
parent
5e6f48fa93
commit
b320179707
|
@ -1,24 +1,24 @@
|
||||||
server.port = 9020
|
server.port = 9020
|
||||||
|
#
|
||||||
spring.datasource.url = jdbc:mysql://localhost:3306/events
|
#spring.datasource.url = jdbc:mysql://localhost:3306/events
|
||||||
spring.datasource.username = root
|
#spring.datasource.username = root
|
||||||
spring.datasource.password = 1DvaTri!
|
#spring.datasource.password = 1DvaTri!
|
||||||
|
#
|
||||||
# Keep the connection alive if idle for a long time (needed in production)
|
## Keep the connection alive if idle for a long time (needed in production)
|
||||||
spring.datasource.testWhileIdle = true
|
#spring.datasource.testWhileIdle = true
|
||||||
spring.datasource.validationQuery = SELECT 1
|
#spring.datasource.validationQuery = SELECT 1
|
||||||
|
#
|
||||||
# Show or not log for each sql query
|
## Show or not log for each sql query
|
||||||
spring.jpa.show-sql = true
|
#spring.jpa.show-sql = true
|
||||||
|
#
|
||||||
# Hibernate ddl auto (create, create-drop, update)
|
## Hibernate ddl auto (create, create-drop, update)
|
||||||
spring.jpa.hibernate.ddl-auto = update
|
#spring.jpa.hibernate.ddl-auto = update
|
||||||
|
#
|
||||||
# Naming strategy
|
## Naming strategy
|
||||||
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
#spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
||||||
|
#
|
||||||
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
## Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
||||||
# stripped before adding them to the entity manager)
|
## stripped before adding them to the entity manager)
|
||||||
|
#
|
||||||
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
## The SQL dialect makes Hibernate generate better SQL for the chosen database
|
||||||
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
#spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
||||||
|
|
|
@ -501,7 +501,7 @@
|
||||||
"name": "Add Category To Team",
|
"name": "Add Category To Team",
|
||||||
"request": {
|
"request": {
|
||||||
"url": "http://{{url}}:{{teamsPort}}/teams/{{teamId}}/teamCategory",
|
"url": "http://{{url}}:{{teamsPort}}/teams/{{teamId}}/teamCategory",
|
||||||
"method": "POST",
|
"method": "PUT",
|
||||||
"header": [
|
"header": [
|
||||||
{
|
{
|
||||||
"key": "Content-Type",
|
"key": "Content-Type",
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
{
|
||||||
|
"id": "f9241756-1b82-e149-d0d5-9269bf40e003",
|
||||||
|
"name": "Steleks Local",
|
||||||
|
"values": [
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"key": "url",
|
||||||
|
"type": "text",
|
||||||
|
"value": "localhost"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"key": "usersPort",
|
||||||
|
"type": "text",
|
||||||
|
"value": "8090"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"key": "eventsPort",
|
||||||
|
"type": "text",
|
||||||
|
"value": "9020"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"key": "teamsPort",
|
||||||
|
"type": "text",
|
||||||
|
"value": "9010"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"key": "teamId",
|
||||||
|
"type": "text",
|
||||||
|
"value": "3"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"key": "userId",
|
||||||
|
"type": "text",
|
||||||
|
"value": "6"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"enabled": true,
|
||||||
|
"key": "eventId",
|
||||||
|
"type": "text",
|
||||||
|
"value": "2"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"timestamp": 1490733819308,
|
||||||
|
"synced": false,
|
||||||
|
"syncedFilename": "",
|
||||||
|
"team": null,
|
||||||
|
"isDeleted": false
|
||||||
|
}
|
|
@ -1,24 +1,24 @@
|
||||||
server.port=9010
|
server.port=9010
|
||||||
|
#
|
||||||
spring.datasource.url = jdbc:mysql://localhost:3306/teams
|
#spring.datasource.url = jdbc:mysql://localhost:3306/teams
|
||||||
spring.datasource.username = root
|
#spring.datasource.username = root
|
||||||
spring.datasource.password = 1DvaTri!
|
#spring.datasource.password = 1DvaTri!
|
||||||
|
#
|
||||||
# Keep the connection alive if idle for a long time (needed in production)
|
## Keep the connection alive if idle for a long time (needed in production)
|
||||||
spring.datasource.testWhileIdle = true
|
#spring.datasource.testWhileIdle = true
|
||||||
spring.datasource.validationQuery = SELECT 1
|
#spring.datasource.validationQuery = SELECT 1
|
||||||
|
#
|
||||||
# Show or not log for each sql query
|
## Show or not log for each sql query
|
||||||
spring.jpa.show-sql = true
|
#spring.jpa.show-sql = true
|
||||||
|
#
|
||||||
# Hibernate ddl auto (create, create-drop, update)
|
## Hibernate ddl auto (create, create-drop, update)
|
||||||
spring.jpa.hibernate.ddl-auto = update
|
#spring.jpa.hibernate.ddl-auto = update
|
||||||
|
#
|
||||||
# Naming strategy
|
## Naming strategy
|
||||||
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
#spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
||||||
|
#
|
||||||
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
## Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
||||||
# stripped before adding them to the entity manager)
|
## stripped before adding them to the entity manager)
|
||||||
|
#
|
||||||
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
## The SQL dialect makes Hibernate generate better SQL for the chosen database
|
||||||
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
#spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
||||||
|
|
|
@ -1,24 +1,24 @@
|
||||||
server.port = 8090
|
server.port = 8090
|
||||||
|
#
|
||||||
spring.datasource.url = jdbc:mysql://localhost:3306/users
|
#spring.datasource.url = jdbc:mysql://localhost:3306/users
|
||||||
spring.datasource.username = root
|
#spring.datasource.username = root
|
||||||
spring.datasource.password = 1DvaTri!
|
#spring.datasource.password = 1DvaTri!
|
||||||
|
#
|
||||||
# Keep the connection alive if idle for a long time (needed in production)
|
## Keep the connection alive if idle for a long time (needed in production)
|
||||||
spring.datasource.testWhileIdle = true
|
#spring.datasource.testWhileIdle = true
|
||||||
spring.datasource.validationQuery = SELECT 1
|
#spring.datasource.validationQuery = SELECT 1
|
||||||
|
#
|
||||||
# Show or not log for each sql query
|
## Show or not log for each sql query
|
||||||
spring.jpa.show-sql = true
|
#spring.jpa.show-sql = true
|
||||||
|
#
|
||||||
# Hibernate ddl auto (create, create-drop, update)
|
## Hibernate ddl auto (create, create-drop, update)
|
||||||
spring.jpa.hibernate.ddl-auto = update
|
#spring.jpa.hibernate.ddl-auto = update
|
||||||
|
#
|
||||||
# Naming strategy
|
## Naming strategy
|
||||||
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
#spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
||||||
|
#
|
||||||
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
## Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
||||||
# stripped before adding them to the entity manager)
|
## stripped before adding them to the entity manager)
|
||||||
|
#
|
||||||
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
## The SQL dialect makes Hibernate generate better SQL for the chosen database
|
||||||
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
#spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
||||||
|
|
Reference in New Issue