Skip to content

Instantly share code, notes, and snippets.

View karlosarr's full-sized avatar
🏠
Working from home

Carlos Ruiz karlosarr

🏠
Working from home
View GitHub Profile
@karlosarr
karlosarr / app.js
Created April 29, 2025 17:11
nodejs
const createError = require('http-errors');
const express = require('express');
const path = require('path');
const cookieParser = require('cookie-parser');
const logger = require('morgan');
const indexVersion = require('./api/version/index');
const indexRoot = require('./api/index/index');
const indexUsers = require('./api/users/me');
@karlosarr
karlosarr / Dockerfile
Created April 29, 2025 06:11
Estándar de Dockerfile para nodejs
FROM node:22.14-alpine
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
COPY ./package*.json ./
COPY ./src ./src
RUN npm i --omit=dev
CMD [ "node", "./src/server/server.js" ]
@karlosarr
karlosarr / README.md
Created August 15, 2023 05:03 — forked from shakaib-arif/README.md
Azure Pipeline: iOS Application with App Extension

Pipeline: iOS Application with App Extension

Unfortunately there is not a straight forward way for the iOS application with App extension in Azure. But to make it work you'll have to do a couple of changes in the project that I'll share later.

Azure Pipeline: Xcode task

As per my recent experience to create the pipeline for such sort of application, the given xcode task from Azure is not capable to handle this case.

And I have later confirmed this from the PG team by reaching out to Azure DevOps support.