All Projects → iineva → Ipa Server

iineva / Ipa Server

Licence: mit
Upload and install IPA in web.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ipa Server

ios code sign
iOS 签名简介
Stars: ✭ 23 (-94.13%)
Mutual labels:  iphone, ipad, ipa
SignTools-CI
Sign iOS apps on demand using CI. Part of: https://github.com/SignTools/SignTools
Stars: ✭ 145 (-63.01%)
Mutual labels:  iphone, ipad, ipa
iPatch
Patch iPA Files With Dynamic Libraries
Stars: ✭ 29 (-92.6%)
Mutual labels:  iphone, ipad, ipa
Xhlaunchad
🔥The screen opening advertising solutions - 开屏广告、启动广告解决方案-支持静态/动态图片广告,mp4视频广告,全屏/半屏广告、兼容iPhone/iPad. 【 Github下载不了/下载慢 可以访问国内下载地址: https://gitee.com/CoderZhuXH/XHLaunchAd】
Stars: ✭ 3,578 (+812.76%)
Mutual labels:  iphone, ipad
blobile
Blases Loaded - Unofficial Live Blaseball Game Viewer for iOS, Android, and Web
Stars: ✭ 16 (-95.92%)
Mutual labels:  iphone, ipad
Deviice
Swift library to easily check the current device and some more info about it.
Stars: ✭ 51 (-86.99%)
Mutual labels:  iphone, ipad
nativesapp
Simple WhatsApp clone just for training purposes - Course Angular Native at www.udemy.com/angular-native
Stars: ✭ 19 (-95.15%)
Mutual labels:  iphone, ipad
Blear
iOS app that transforms your photos into stunning blurry wallpapers for your device
Stars: ✭ 311 (-20.66%)
Mutual labels:  iphone, ipad
jyutping
Cantonese Jyutping Keyboard for iOS. 粵語粵拼輸入法鍵盤
Stars: ✭ 23 (-94.13%)
Mutual labels:  iphone, ipad
Shortcutsdirectory
A collection of user-submitted shortcuts for Shortcuts for iOS.
Stars: ✭ 376 (-4.08%)
Mutual labels:  iphone, ipad
Instagram stories
Inspired by Instagram Stories functionality. This source is similar to Instagram Stories, which is having both image and video support.
Stars: ✭ 275 (-29.85%)
Mutual labels:  iphone, ipad
Open Source Xamarin Apps
📱 Collaborative List of Open Source Xamarin Apps
Stars: ✭ 318 (-18.88%)
Mutual labels:  iphone, ipad
iOS interviews
iOS Interviews - 史上最贴心 iOS 面试知识点分享!不只是 iOS !只为技术的执拗 !👍 全网火速更新中 🔥 期待你的讨论,期待你的 issue ! 🌟
Stars: ✭ 25 (-93.62%)
Mutual labels:  iphone, ipad
SpecTools
Write less test code with this set of spec tools. Swift, iOS, testing framework independent (but works well with Quick/Nimble or directly).
Stars: ✭ 38 (-90.31%)
Mutual labels:  iphone, ipad
Localradio
📻 LocalRadio is "Radio for Cord-Cutters" – a Software-Defined Radio (SDR) app for your Mac and mobile devices. With an inexpensive RTL-SDR USB device, LocalRadio provides a casual, home-based radio listening experience for your favorite local frequencies - FM broadcasts/free music/news/sports/weather/public safety & aviation scanner/etc.
Stars: ✭ 269 (-31.38%)
Mutual labels:  iphone, ipad
Showtime
The easiest way to show off your iOS taps and gestures for demos and videos.
Stars: ✭ 281 (-28.32%)
Mutual labels:  iphone, ipad
Pushok
PHP client for Apple Push Notification Service (APNs) - Send push notifications to iOS using the new APNs HTTP/2 protocol with token-based (JWT with p8 private key)
Stars: ✭ 260 (-33.67%)
Mutual labels:  iphone, ipad
Yampa
Functional Reactive Programming domain-specific language embedded in Haskell, for programming efficient hybrid (mixed discrete-time and continuous-time) systems.
Stars: ✭ 294 (-25%)
Mutual labels:  iphone, ipad
spark-sdk-ios
DEPRECATED Particle iOS Cloud SDK. Use -->
Stars: ✭ 52 (-86.73%)
Mutual labels:  iphone, ipad
Hostess.swift
A Swift implementation of NSHost that works on iOS, OS X and tvOS. Hostess.swift is safe to use in a framework because it does not require a bridging header. Hostess is Swift 4.0 (or newer) only and replaces the Swift 2.x only Host.swift.
Stars: ✭ 27 (-93.11%)
Mutual labels:  iphone, ipad

ipa-server

Upload and install IPA in web.

Online Demo

https://ipa.ineva.cn

⚠️ Note About This Demo:

  • For test only
  • Server is deploy in China
  • Bandwidth only 1Mb/s
  • DO NOT USE THIS ON PRODUCTION

Install

$ git clone https://github.com/iineva/ipa-server
$ cd ipa-server
$ docker-compose up -d

Test

Open <http://<HOST_NAME>:9008> in your browser.

Docker Deploy

  • This server is not included SSL certificate. It must run behide the reverse proxy with HTTPS.

  • There is a simple way to setup a HTTPS with replace docker-compose.yml file:


# ***** Replace ALL <YOUR_DOMAIN> to you really domain *****

version: "2"

services:
  web:
    image: ineva/ipa-server:latest
    container_name: ipa-server
    restart: always
    environment:
      - NODE_ENV=production
      - PUBLIC_URL=https://<YOUR_DOMAIN>
    volumes:
      - "/docker/data/ipa-server:/app/upload"
  caddy:
    image: abiosoft/caddy:0.11.5
    restart: always
    ports:
      - "80:80"
      - "443:443"
    entrypoint: |
      sh -c 'echo "$$CADDY_CONFIG" > /etc/Caddyfile && /usr/bin/caddy --conf /etc/Caddyfile --log stdout'
    environment:
      CADDY_CONFIG: |
        <YOUR_DOMAIN> {
          gzip
          proxy / web:8080
        }

Deploy Without Docker

# install node.js first
npm install
npm start
  • now you can access https://<YOUR_DOMAIN> in your browser.

Upload Access Control

Server side:

Add ACCESS_KEY to system environment as password.

Client side:

Browser open: https://<YOUR_DOMAIN>/key.html?key=<ACCESS_KEY>

Home Detail
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].