Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mobilehero-archive/oclif-plugin-titanium
🚀oclif plugin for creating, building, and managing Titanium Native mobile apps
https://github.com/mobilehero-archive/oclif-plugin-titanium
android appcelerator appcelerator-titanium axway brenton-house cross-platform-native ios native nodejs npm oclif plugin titanium titanium-alloy titanium-mobile titanium-turbo turbo
Last synced: about 1 month ago
JSON representation
🚀oclif plugin for creating, building, and managing Titanium Native mobile apps
- Host: GitHub
- URL: https://github.com/mobilehero-archive/oclif-plugin-titanium
- Owner: mobilehero-archive
- Created: 2019-03-01T04:49:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-10T21:21:27.000Z (over 5 years ago)
- Last Synced: 2024-10-02T03:01:23.243Z (about 2 months ago)
- Topics: android, appcelerator, appcelerator-titanium, axway, brenton-house, cross-platform-native, ios, native, nodejs, npm, oclif, plugin, titanium, titanium-alloy, titanium-mobile, titanium-turbo, turbo
- Language: JavaScript
- Homepage:
- Size: 70.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
oclif-plugin-titanium
=====================oclif plugin for creating, building, and managing Titanium Native mobile apps
[![oclif](https://img.shields.io/badge/cli-oclif-brightgreen.svg)](https://oclif.io)
[![Version](https://img.shields.io/npm/v/oclif-plugin-titanium.svg)](https://npmjs.org/package/oclif-plugin-titanium)
[![Downloads/week](https://img.shields.io/npm/dw/oclif-plugin-titanium.svg)](https://npmjs.org/package/oclif-plugin-titanium)
[![License](https://img.shields.io/npm/l/oclif-plugin-titanium.svg)](https://github.com/brentonhouse/oclif-plugin-titanium/blob/master/package.json)* [Usage](#usage)
* [Commands](#commands)# Usage
```sh-session
$ npm install -g oclif-plugin-titanium
$ mobile COMMAND
running command...
$ mobile (-v|--version|version)
oclif-plugin-titanium/0.0.10 darwin-x64 node-v10.16.0
$ mobile --help [COMMAND]
USAGE
$ mobile COMMAND
...
```# Commands
* [`mobile app:create [NAME] [TEMPLATE]`](#mobile-appcreate-name-template)
## `mobile app:create [NAME] [TEMPLATE]`
Create a shiny new mobile application
```
USAGE
$ mobile app:create [NAME] [TEMPLATE]ARGUMENTS
NAME Name of your project
TEMPLATE Template to use for creating your new appOPTIONS
-c, --copyright=copyright Copyright for your project
-d, --description=description Description for your project
-i, --id=id [default: Generate from project name] ID for your project
-l, --license=license Specifies the license for the project
-n, --name=name Name of your project
-p, --path=path Specifies the directory where you want to initialize the project
-p, --publisher=publisher Name of person/company publishing app-t, --template=template [default: @titanium/template-alloy-default] Template to use for creating your new
app-u, --url=url URL for your project
--author_email=author_email Specifies the email address of the Author
--author_name=author_name Specifies the full name of the Author
--author_url=author_url Specifies the URL for the Author
--github_username=github_username Specifies the github username for the project
DESCRIPTION
...
Create a new mobile app from a template using all sorts of nifty options!Tool will create an app using values from parameters or from the user config file which is located here:
~/.config/@geek/mobile/config.json
Future versions of the tool will allow setting config values from CLI.EXAMPLES
Create app from template in npm package
mobile app:create my-app-name [@scope/]
mobile app:create my-app-name [@scope/]@
mobile app:create my-app-name [@scope/]@
mobile app:create my-app-name [@scope/]@Create app from template in git repo
mobile app:create my-app-name :/
mobile app:create my-app-name :/#
mobile app:create my-app-name :/#
mobile app:create my-app-name(where can be: github, bitbucket, or gitlab)
Create app from template in tarball
mobile app:create my-app-name
mobile app:create my-app-nameCreate app from template in local directory
mobile app:create my-app-name
```_See code: [src/commands/app/create.js](https://github.com/brentonhouse/oclif-plugin-titanium/blob/v0.0.10/src/commands/app/create.js)_