The endpoint that gives away the 10 most popular videos on YouTube!
This repository can be used as a template for creating endpoints!
- Go to the folder "Docker"
- Create Data Source (for example
"db-point") - Run
docker compose up - Run script for create table in your database
- Method
FetchDataBlockwill take data from the table - Method
SaveDataBlockwill save data to a table
create table youtube
(
id int auto_increment,
title varchar(255) not null,
url varchar(255) not null,
constraint youtube_pk
unique (id)
);
- When starting
main.gospecify a flag--config-file ./config.yaml
go run cmd/endpoint/main.go --config-file config.yamlhttps://only-to-top.ru/blog/programming/2022-06-17-youtube-api-key.html
After receiving the key, do not forget to specify it in the configuration

