- Install MiniKube
- Start with insecure registry
minikube start
- New terminal:
minikube dashboard
minikube addons enable ingress
(minikube tunnel
?)- Install Dapr
dapr init -k --dev
dapr status -k
- Check components:
dapr components -k
- Check config:
dapr configurations -k
- cd to order-processor folder with Dockerfile:
minikube image build -t order-processor:latest .
- cd to checkout folder with Dockerfile:
minikube image build -t checkout:latest .
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://elio.dev/demo-time.schema.json", | |
"title": "0 - Intro", | |
"description": "", | |
"demos": [ | |
{ | |
"title": "Title", | |
"steps": [ | |
{ | |
"action": "open", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>onmidimessage</title> | |
<script type="module"> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@apiKey=DEVTO_APIKEY | |
@orgId=DEVTO_ORGANIZATION_ID | |
@articleId=DEVTO_ARTICLE_ID | |
### Get historical analytics per day for an article since the given start date. | |
GET https://dev.to/api/analytics/historical?start=2022-05-01&article_id={{articleId}} | |
api-key: {{apiKey}} | |
### Get total (aggregate) analytics for an article. | |
https://dev.to/api/analytics/totals?article_id={{articleId}} |
- What is a server? => hardware or software that can run code.
- Full control over the server.
- Great if you need a lot of control over the environment, need to install runtimes & applications.
- What is serverless? => Worry about servers less.
NewerOlder