I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
import { PrismaClient } from '@prisma/client'; | |
import Shopify from '@shopify/shopify-api'; | |
import { Session } from '@shopify/shopify-api/dist/auth/session'; | |
const prisma = new PrismaClient(); | |
module.exports.storeCallback = async function storeCallback(session){ | |
console.log('Running storeCallback') | |
const payload = { ...session } |
# Insomnia Configuration | |
## Run the test query | |
{ | |
shop { | |
id | |
name | |
} | |
} | |
# Query Structure Examples |
import axios from 'axios' | |
import React from 'react' | |
import { | |
Stack, | |
Thumbnail, | |
TextStyle, | |
Card, | |
Pagination, | |
Spinner, | |
TextContainer |
/** | |
Possible Carrier Codes: | |
- UPS | |
- USPS | |
- FEDEX | |
- AIRBORNE_EXPRESS | |
- DHL | |
- DHL_GLOBAL_ECOMMERCE | |
- US_ASCENDIA | |
- US_DTDC |
Basis of Comparision Spring Cloud Spring Boot | |
Library Spring Cloud has an open-source library. Spring Boot has an open-source library. | |
Microservices This is working for microservices to manage configuration. This is work to create microservices. | |
Features 1. Intelligent routing and service discovery: In creating microservices four services are important. Service discovery one of them. These services are dependent on each other. | |
2. Service-to-Service Call: To connect all dependent services has sequence, register to call the endpoint. | |
3. Load Balancing: It is proper distributed network traffic to the backend server. | |
4. Leadership Election: The application work with another application as a third-party system. | |
5. Global Lock: Two threads not access simultaneously the same resource at the same time. | |
6.Distributed Configuration and Distributed Messaging 1.Spring Applications: Create stand-alone Spring applications by calling a static run() method. | |
2.Web Application: We can create an HTTP server using embedded Tomc |
Mode Description | |
Normal Default; for navigation and simple editing | |
Insert For explicitly inserting and modifying text | |
Command Line For operations like saving, exiting, etc. |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
<?xml version="1.0" encoding="UTF-8"?> | |
<persistence xmlns="http://java.sun.com/xml/ns/persistence" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" | |
version="2.0"> | |
<persistence-unit name="funkopop" transaction-type="RESOURCE_LOCAL"> | |
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> | |
<properties> | |
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://localhost:3306/funkopop" /> | |
<property name="javax.persistence.jdbc.user" value="admin" /> |