Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vzsg/auto-adhoc-distribution-site
An automatic site to facilitate the ad hoc distribution of iOS apps
https://github.com/vzsg/auto-adhoc-distribution-site
Last synced: 2 months ago
JSON representation
An automatic site to facilitate the ad hoc distribution of iOS apps
- Host: GitHub
- URL: https://github.com/vzsg/auto-adhoc-distribution-site
- Owner: vzsg
- License: mit
- Created: 2019-06-25T02:03:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-05-02T01:13:21.000Z (8 months ago)
- Last Synced: 2024-05-02T17:17:48.907Z (8 months ago)
- Language: JavaScript
- Size: 66.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Even Simpler iOS Ad Hoc Distribution Site
A simple, automatic site for the ad doc distribution of an iOS app ready for deployment on Heroku. Loosely based on this [Ad Hoc iOS distribution website starter](https://github.com/mhgbrown/simple-ios-ad-hoc-distribution-site).
## Warning
Packages are dumped into the application image (slug) itself, so large files might overshoot the slug size limitations, and adversely affect deployment times.
## New Features
- Support for serving multiple applications
- Automatic discovery of IPAs from the `/apps` folder
- Automatic manifest.plist generation
- Forced HTTPS and other security tricks when running on Heroku (via Helmet)## Usage
1. Download or clone the contents of this repository.
2. Drop all the IPAs that you want to make available in the `/apps` folder.
3. Create a Heroku application and deploy the repository to it.Example:
```
git init
git add .
git commit -m "Initial commit"
heroku apps:create adhoc-distribution-example
git push heroku master
```4. Navigate to the application.
```
heroku open
```