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 / deploy.yaml
Last active September 21, 2025 18:58
golang auto assets upload workflow
name: Build Go App
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build-linux:
@JscorpTech
JscorpTech / example.service
Last active September 24, 2025 11:49
linux systemd example
[Unit]
Description="Notification service"
After=network.target
[Service]
User=root
Group=root
Type=simple
Restart=on-failure
RestartSec=5s
@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;