Skip to content

Commit a9aaa6b

Browse files
authored
Merge pull request #588 from topcoder-platform/develop
Minor Release 3.0.1
2 parents 4022be1 + f39ee92 commit a9aaa6b

File tree

91 files changed

+660
-2808
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+660
-2808
lines changed

.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
- POSTGRES_USER: circle_test
4949
- POSTGRES_DB: circle_test
5050
- image: elasticsearch:2.3
51-
- image: rabbitmq:3-management
5251
environment:
5352
DEPLOY_ENV: "DEV"
5453
LOGICAL_ENV: "dev"

.ebextensions/01-environment-variables.config

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ option_settings:
2323
- namespace: aws:elasticbeanstalk:application:environment
2424
option_name: DB_MASTER_URL
2525
value: TBD
26-
- namespace: aws:elasticbeanstalk:application:environment
27-
option_name: RABBITMQ_URL
28-
value: TBD
2926
- namespace: aws:elasticbeanstalk:application:environment
3027
option_name: PROJECTS_ES_URL
3128
value: TBD

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all"
4+
}

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Microservice to manage CRUD operations for all things Projects.
99
- [Steps to run locally](#steps-to-run-locally)
1010
- [Run Connect App with Project Service locally](#run-connect-app-with-project-service-locally)
1111
- [Import and Export data](#import-and-export-data)
12-
- [📤 Export data](#%f0%9f%93%a4-export-data)
13-
- [📥 Import data](#%f0%9f%93%a5-import-data)
12+
- [📤 Export data](#-export-data)
13+
- [📥 Import data](#-import-data)
1414
- [Import metadata from api.topcoder-dev.com (deprecated)](#import-metadata-from-apitopcoder-devcom-deprecated)
1515
- [Run via Docker](#run-via-docker)
1616
- [NPM Commands](#npm-commands)
@@ -54,7 +54,6 @@ Local setup should work good on **Linux**, **macOS** and **Windows**.
5454
# Locally deployed services (via docker-compose)
5555
PROJECTS_ES_URL=dockerhost:9200
5656
DB_MASTER_URL=postgres://coder:mysecretpassword@dockerhost:5432/projectsdb
57-
RABBITMQ_URL=amqp://dockerhost:5672
5857
BUS_API_URL=http://dockerhost:8002/v5
5958

6059
# Locally we usually run in Development mode
@@ -110,7 +109,6 @@ Local setup should work good on **Linux**, **macOS** and **Windows**.
110109
|----------|:-----:|:----:|
111110
| PostgreSQL | db | 5432 |
112111
| Elasticsearch | esearch | 9200 |
113-
| RabbitMQ | queue | 5672, 15672 |
114112
| Mock Service (not in use) | jsonserver | 3001 |
115113
| Zookeeper | zookeeper | 2181 |
116114
| Kafka | kafka | 9092 |
@@ -148,7 +146,6 @@ Local setup should work good on **Linux**, **macOS** and **Windows**.
148146
|----------|:-----:|:----:|
149147
| PostgreSQL | db | 5432 |
150148
| Elasticsearch | esearch | 9200 |
151-
| RabbitMQ | queue | 5672, 15672 |
152149
| Mock Service (not in use) | jsonserver | 3001 |
153150
154151
</details>

config/custom-environment-variables.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
"metadataDocType": "METADATA_ES_DOC_TYPE",
1818
"metadataDocDefaultId": "METADATA_ES_DOC_DEFAULT_ID"
1919
},
20-
"rabbitmqURL": "RABBITMQ_URL",
2120
"pubsubQueueName": "PUBSUB_QUEUE_NAME",
2221
"pubsubExchangeName": "PUBSUB_EXCHANGE_NAME",
2322
"directProjectServiceEndpoint": "DIRECT_PROJECT_SERVICE_ENDPOINT",

config/default.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"captureLogs": "false",
77
"enableFileUpload": "true",
88
"logentriesToken": "",
9-
"rabbitmqURL": "",
109
"pubsubQueueName": "project.service",
1110
"pubsubExchangeName": "projects",
1211
"fileServiceEndpoint": "",

config/development.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"connectProjectsUrl": "https://connect.topcoder-dev.com/projects/",
66
"fileServiceEndpoint": "https://api.topcoder-dev.com/v3/files/",
77
"connectProjectsUrl": "https://connect.topcoder-dev.com/projects/",
8-
"memberServiceEndpoint": "https://api.topcoder-dev.com/v3/members"
8+
"memberServiceEndpoint": "https://api.topcoder-dev.com/v3/members",
9+
"identityServiceEndpoint": "https://api.topcoder-dev.com/v3/"
910
}

config/m2m.local.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ if (process.env.NODE_ENV === 'test') {
1212
logLevel: 'debug',
1313
captureLogs: 'false',
1414
logentriesToken: '',
15-
rabbitmqURL: 'amqp://dockerhost:5672',
1615
fileServiceEndpoint: 'https://api.topcoder-dev.com/v3/files/',
1716
directProjectServiceEndpoint: 'https://api.topcoder-dev.com/v3/direct',
1817
connectProjectsUrl: 'https://connect.topcoder-dev.com/projects/',

config/mock.local.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ if (process.env.NODE_ENV === 'test') {
1212
logLevel: 'debug',
1313
captureLogs: 'false',
1414
logentriesToken: '',
15-
rabbitmqURL: 'amqp://dockerhost:5672',
1615
fileServiceEndpoint: 'https://api.topcoder-dev.com/v3/files/',
1716
directProjectServiceEndpoint: 'https://api.topcoder-dev.com/v3/direct',
1817
connectProjectsUrl: 'https://connect.topcoder-dev.com/projects/',

config/test.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"metadataIndexName": "metadata_test",
1616
"metadataDocType": "doc"
1717
},
18-
"rabbitmqUrl": "amqp://localhost:5672",
1918
"connectProjectsUrl": "https://local.topcoder-dev.com/projects/",
2019
"dbConfig": {
2120
"masterUrl": "postgres://coder:mysecretpassword@localhost:5432/projectsdb_test",

0 commit comments

Comments
 (0)