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
[ | |
{ | |
"id": "Launchpad-Test-Page-9886ac8169604f29b7e15de5cd0ea008", | |
"background": { | |
"type": "image/png", | |
"url": "https://images.unsplash.com/photo-1682686581498-5e85c7228119?q=80&w=2940&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" | |
}, | |
"logo": { | |
"type": "image/png", | |
"url": "https://images.unsplash.com/photo-1703868673582-becc3bd199d8?q=80&w=2868&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" |
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
import { Controller, Get } from "@nestjs/common"; | |
import { | |
ApiOkResponse, | |
ApiOperation, | |
ApiProperty, | |
ApiTags, | |
} from "@nestjs/swagger"; | |
class PaginationMeta { | |
/** |
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
import axios, { AxiosInstance, AxiosRequestConfig } from 'axios' | |
const headers: Readonly<Record<string, string | boolean>> = { | |
Accept: 'application/json', | |
'Content-Type': 'application/json; charset=utf-8', | |
'X-Requested-With': 'XMLHttpRequest' | |
} | |
class Http { | |
private instance: AxiosInstance | null = null |
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
sudo apt-get update | |
sudo apt-get install -y \ | |
ca-certificates \ | |
curl \ | |
gnupg \ | |
lsb-release | |
sudo mkdir -p /etc/apt/keyrings | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg | |
echo \ | |
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ |