Skip to content

Instantly share code, notes, and snippets.

View JscorpTech's full-sized avatar
💻
Work

Azamov Samandar JscorpTech

💻
Work
View GitHub Profile
@JscorpTech
JscorpTech / Jenkinsfile
Last active September 10, 2025 08:57
github action testlar ishga tushurib barchasi to'g'ri bo'lsa deploy qiladi
pipeline {
agent any
environment {
PROD_ENV = "/opt/env/.env.vesbini"
IMAGE_NAME = "vesbini"
TEST_TAG = "test"
PROD_TAG = "latest"
CONTAINER_DB = "vesbini_db_test"
CONTAINER_WEB = "vesbini_web_test"
@JscorpTech
JscorpTech / AtmosService.php
Last active August 29, 2025 06:57
atmos payment
<?php
namespace App\Services;
use Exception;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Middleware;
use Illuminate\Support\Env;