Follow the instructions below to deploy and link your profile service.
- User Profile Service consists of 3 APIs /health, /profile, and /verification
- This is a template for creating your own NodeJs backend code of profile service.
- /health checks whether the server is up and running
- /profile returns data of the user to whom profile Service belongs. It is a protected API so that no one can take your information.
- /verification API returns a hash based on the special chaincode generated by the user at identity service.
- This service is used by Real Dev Squad to connect and help new people come aboard to learn development.
Profile Service is your service which will be deployed and verified by you with the help of some pre-created APIs and contains all the relevant data about you, used for building your profile and getting yourself an identity in Real Dev Squad. This service will be maintained by you throughout the term of your journey in Real Dev Squad.
Fork the Template Repository from the top right corner
Create a new fork, ensure that Owner
is selected as your GitHub username, and the repository name can be named as :
<YOUR_NAME>'s-profile-service
Example: Rohan's-profile-service
Now when you have forked the repository. We will clone the repository on our PC.
Click on the Code
button on the right just above the code
Ensure that HTTPS is selected and copy the link
Now enter the following command in the terminal to clone the repository:
git clone <link you have copied>
Open the cloned repository in VScode or your code editor
Open New Terminal in VSCode and run the following command
yarn
or yarn install
This will bring in all the packages and dependencies if any left.
Now we will create a file local to you that contains all your profile data. We will use environment variables so that only you and the authorized RDS service can access your data and not anyone who has your deployment link
Add a file in your main folder and name it as .env
Copy the following data in your .env file and replace right side values with your real information
FIRST_NAME='first_name'
LAST_NAME='last_name'
EMAIL='email_id'
PHONE='your contact number without country code'
YOE=your years of experience
COMPANY='Your company / University you are in'
DESIGNATION='Current Role'
GITHUB_ID='github_id<github_id not the full url>'
LINKEDIN_ID='linkedin_id<linkedin_id not the full url>'
TWITTER_ID='twitter_id<twitter_id not the full url>'
INSTAGRAM_ID='instagram_id<instagram_id not the full url>'
WEBSITE='your portfolio website. Leave empty if not there'
CHAIN_CODE='Your chain code. Will be generated in further steps when deploying'
Note: FIRST_NAME, LAST_NAME, EMAIL, PHONE, COMPANY, DESIGNATION, GITHUB_ID, LINKEDIN_ID, and CHAIN_CODE are required fields. If you don't have these fields or you have these with empty values or spaces, they will fail in validation and your profile service get blocked. PHONE should be only digits, YOE is a number and can be a minimum of 0.
Add a gitignore file and add a .env file in it so it is not tracked and your personal information is never uploaded to Github.
Now we will test if our profile service is working on our local device before deploying
Open Insomnia and select debug in the top center of the screen
You will see the above screen
Now go to VSCode open your profile service and type the following code in the new terminal:
yarn run dev
This command will run your service locally
Open Insomnia and enter the following link with GET Request
http://localhost:8000/health
Congratulations you have run your first service and tested your first API ππ
To test other APIs we need to deploy our service and generate chaincode from the RDS identity service which is used to verify your profile service
Now we will deploy our service so that it is running on a server accessible to everyone and is not running only locally on your machine.
Login to your Render account. After logging in go to your dashboard and you will see this interface.
Click on New
and you will see a dropdown having multiple options.
Click on Web Service
Now, you will be directed to a new page where you have to configure your GitHub or GitLab account so that you can deploy your profile service on Render.
Now select your profile service repository to deploy.
Then click on Connect
.
Now you will be seeing your deploy section of the Render app as below.
Now, fill in all the inputs correctly.
Then, select the Free tier as shown below,
Now click on the advanced option below the plans section.
You will find the Add Environment Variables
option along with other options. Leave others as default and click on the add environment variables button.
Make sure you clear the cache and redeploy your service after storing env specifically chain_code.
Now you will find a box for Key and one box for Value.
Copy the first key from your .env file into the KEY box
and copy its value(Without apostrophes) in the VALUE box
and click on Add button. For empty values add a space in the VALUE box.
Do Step 7 Repeatedly for all values of the .env file but leave chaincode because that will be generated later on.
And you are done with deployment. Now only the deployment link is protected and you have your info which cannot even be uploaded by mistake on GitHub.
Finally, scroll down and you will find a button named Create Web Service
. Click on that button to deploy your code.
π₯³ Congratulations, you have successfully deployed your profile service.
Now you will be linking your deployed service with us i.e. RDS.
Go to Real Dev Squad website and click on the Sign In With GitHub
button in the navbar as shown below.
Link your GitHub account, and complete the SignUp
steps.
Note: Only for users who don't have an account on the Real Dev Squad website or who haven't linked their GitHub account on the Real Dev Squad website.
Go to My Site or you can simply click the user greeting as shown below (this is after you have Signed In with your GitHub account)
Once you land on my site, you will have to go to the Identity Tab (P.S. You can directly click on this hyperlink to get you to the desired page).
You get to see something like the below form
Click on Get Started
Click on Generate Chaincode
to generate the chaincode.
Then Click on Copy
to copy the chaincode.
Note: Keep this generated code very safe as you will be able to see it once only.
Update the chaincode in deployment from Dashboard -> click on your deployed service -> Environment -> update the chaincode
as discussed in Step 7 of Deployment.
Now we have completed all the information.
Now that you have pushed your code with the chaincode. Enter your deployed service URL here.
Click on Next
.
Then, click on Link
.
Woohoo now wait for a few seconds or minutes to get your service verified by the Real Dev Squad service.
Once you are verified you will get to see a verification message that your verification is completed.
Awesome, Congratulations π₯³ π on becoming a user in Real Dev Squad and
**Note: ** If you are unable to verify your service or there are some errors that you encountered. Please reach out to members of Real Dev Squad from here
- You can run the
yarn run test
cmd local after completing all information and see if any test is failing. If any of the tests is failing please re-check the information entered by you in the .env file. These tests check the functionality of all three APIs.