https://github.com/victorqribeiro/create
A simple bash script to create progressive web apps (pwa).
https://github.com/victorqribeiro/create
bash create-app progressive-web-app project-template pwa webapp
Last synced: 12 months ago
JSON representation
A simple bash script to create progressive web apps (pwa).
- Host: GitHub
- URL: https://github.com/victorqribeiro/create
- Owner: victorqribeiro
- License: mit
- Created: 2018-11-22T01:22:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-17T17:27:58.000Z (over 7 years ago)
- Last Synced: 2025-06-09T23:05:47.048Z (about 1 year ago)
- Topics: bash, create-app, progressive-web-app, project-template, pwa, webapp
- Language: Shell
- Homepage:
- Size: 31.3 KB
- Stars: 12
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Create
A simple bash script to create web apps that can be installed on devices as progressive web apps (pwa).
## About
This is a very simple but very useful script to create a web app template. For Chrome to consider your web app a valid app, it needs to have a cache manifest, a web app manifest, a bigger than 144x144 pixel favicon and a registered service worker (read more about it [here](https://developers.google.com/web/tools/lighthouse/audits/install-prompt)). This script takes care of it for you.
## How to use
Put it in your scrips folder.
Give it execute permisson
```
chmod +x create
```
Run it with a project's name as argument
```
create myAwesomeProject
```
## Files created
[index.html](myAwesomeProject/index.html)
[css/main.css](myAwesomeProject/css/main.css)
[js/aux.js](myAwesomeProject/js/aux.js)
[js/main.js](myAwesomeProject/js/main.js)
[sw.js](myAwesomeProject/sw.js)
[favicon.png](myAwesomeProject/favicon.png)
[manifest.json](myAwesomeProject/manifest.json)