ita-social-projects / GreenCityUBS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SoftServe IT Academy. GreenCity project

GreenCityUBS License: MIT Github Issues Pending Pull-Requests

1. About the project

The main aim of “GreenCity” project is to teach people in a playful and challenging way to have an eco-friendly lifestyle. A user can view on the map places that have some eco-initiatives or suggest discounts for being environmentally aware (for instance, coffee shops that give a discount if a customer comes with their own cup). А user can start doing an environment-friendly habit and track their progress with a habit tracker. "GreenCityUBS" is a microservice which contains garbage collection service.

2. Where to find front-end part of the project

Here is the front-end part of our project: https://github.com/ita-social-projects/GreenCityClient.

dev branch of the back-end corresponds to dev branch on the front-end. The same thing with master branches.

3. How to contribute

You're encouraged to contribute to our project if you've found any issues or missing functionality that you would want to see. Here you can see the list of issues and here you can create a new issue.

Before sending any pull request, please discuss requirements/changes to be implemented using an existing issue or by creating a new one. All pull requests should be done into dev branch.

Though there are four GitHub projects (GreenCity, GreenCityUser and GreenCityUBS for back-end part and GreenCityClient for front-end part) all of the issues are listed in the first one - GreenCity.

NOTE: make sure that your code passes checkstyle. Otherwise your pull request will be declined. See paragraph Setup Checkstyle.

4. Start the project locally

4.1. Required to install

  • Java 11
  • PostgreSQL 9.5 or higher

4.2. How to run

  1. You should open in IntelliJ IDEA File -> New Project -> Project From Version Control -> Repository URL -> URL (https://github.com/ita-social-projects/GreenCityUBS.git) -> Clone.

  2. Open Terminal write git checkout -b dev (this create new local branch "dev").

  3. After this git pull origin dev (for update last version from branch dev)

  4. Create new database in Postgres (greencityubs).

  5. Add Configuration -> + -> Application.

  • Name : UbsApplication.

  • Use classpath of modules:core

  • JRE : 11.

  1. Enviroment variables:

env-vars Add also this fields inti User environment variables, ask in GreenCity group, propertires to this fields. env-vars

  1. Run UbsApplication

  2. If you did everything correctly, you should be able to access swagger by this URL: http://localhost:8050/swagger-ui.html#/

  3. You can insert data into your database for this you should run file insert.sql

Also all these variables you can set in Intellij Idea. For instance:

spring.datasource.url=${DATASOURCE_URL}
spring.datasource.username=${DATASOURCE_USER}
spring.datasource.password=${DATASOURCE_PASSWORD}
spring.mail.username=${EMAIL_ADDRESS}
spring.mail.password=${EMAIL_PASSWORD}
cloud.name=${CLOUD_NAME}
api.key=${API_KEY}
api.secret=${API_SECRET}
google.clientId=${GOOGLE_CLIENT_ID}
spring.rabbitmq.host=${RABBITMQ_HOST}
spring.rabbitmq.password=${RABBITMQ_PASSWORD}
spring.rabbitmq.username=${RABBITMQ_USERNAME}
bucketName=${BUCKET_NAME}
staticUrl=${STATIC_URL}
spring.social.facebook.app-id=${FACEBOOK_APP_ID}
spring.social.facebook.app-secret=${FACEBOOK_APP_SECRET}
greencity.server.address = ${GREENCITY_SERVER_ADDRESS}
  1. If you did everything correctly, you should be able to access swagger by this URL: http://localhost:8050/swagger-ui.html#/

4.3. How to work with Viber bot locally.

  1. You can find a quick instruction here: https://www.youtube.com/watch?v=_ORUSRJGXmk&list=PLcaYXHLmxz8nJByvtOoIBr8FnSS9CY1JD&index=23&t=37s

4.4. How to work with swagger UI in our project

  1. Run GreenCityUBS project (look up paragraph How to run).

  2. Run GreenCityUser project (look up paragraph How to run).

  3. Use the following link to open Swagger UI: http://localhost:8060/swagger-ui.html#/

  4. Use POST method with /ownSecurity/signUp to create an account. If you set a valid email credentials, you should receive an email with verification link. Verify the registration by following that link. We highly recommend to use gmail, it's free of charge and easy to get going: how to allow email sending from gmail, Google client id. Alternatively you can drop a record in verify_email table on your local database. First you should update user role : UPDATE users SET role = 1 WHERE id = your_user_id;. After this DELETE FROM verify_emails WHERE user_id = your_user_id;

  5. Use POST method with /ownSecurity/signIn to sign in. After entering the credentials you should receive access and refresh tokens.

  6. Copy the given access token and put it into GreenCityUBS(http://localhost:8050/swagger-ui.html#/) Authentication Header. Press Authorize button.

    Authentication-button-swagger

    Insert the given token into input field. The scheme should be like this Bearer <given_token>. Press Authorize button.

    Bearer-examle

  7. Now you can use swagger UI to test REST API. Some controllers require ADMIN role. By default, new registered users have role USER. To overcome this you need to update record that corresponds to your user in the local database. For example, UPDATE users SET role = 1 WHERE id = <your_user_id>.

4.5. Connect with front-end

There is no special configurations required. Just clone GreenCityClient and run it. If you want to sign in with Google account, it's mandatory to set google.clientId. Read more about how to obtain Google client id, it's free.

5. Setup Checkstyle

Here you can read more about how to set up checkstyle;

Here you can read more about SonarLint;

About

License:MIT License


Languages

Language:Java 99.9%Language:Go 0.1%Language:Dockerfile 0.0%