https://github.com/moduscreateorg/notes-app-ionic-pro
This is sample application built with Ionic to demonstrate the tools & services provided by Ionic Pro.
https://github.com/moduscreateorg/notes-app-ionic-pro
Last synced: 2 months ago
JSON representation
This is sample application built with Ionic to demonstrate the tools & services provided by Ionic Pro.
- Host: GitHub
- URL: https://github.com/moduscreateorg/notes-app-ionic-pro
- Owner: ModusCreateOrg
- License: mit
- Created: 2018-03-19T17:00:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-23T20:04:14.000Z (about 2 years ago)
- Last Synced: 2025-04-15T03:06:14.568Z (2 months ago)
- Language: Shell
- Size: 2.4 MB
- Stars: 2
- Watchers: 17
- Forks: 2
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[](https://moduscreate.com)
# Notes App Ionic Pro
[](http://makeapullrequest.com)
[](https://github.com/your/your-project/blob/master/LICENSE)Code in Ionic, build in Jenkins/Travis and test on AWS Device Farm!
The source can be built via Jenkins or TravisCI (see [Jenkinsfile](./Jenkinsfile) & [.travis.yml](./.travis.yml) respectively), then tested on AWS Device Farm and uploaded to AWS S3.## Developing
### Setting up Dev
When developing in Docker, we might also want to access AWS CLI and so we need to pass in the AWS credentials into our Docker container, as shown below:
```shell
# Make a copy of the environment file.
$ cp ./ci/env.sample ./ci/env.dev # You can make it `env.prod` or anything you want.# Edit to add your own AWS credentials.
$ vim ./ci/env.dev# Build the `ionic-ci-cd` image.
# ANDROID_API_LEVEL and ANDROID_BUILD_TOOLS_VERSION are optional.
$ docker build \
--rm \
-t ionic-ci-cd \
--build-arg USER=$(id -un) \
--build-arg GROUP=$(id -gn) \
--build-arg UID=$(id -u) \
--build-arg GID=$(id -g) \
--build-arg ANDROID_API_LEVEL=26 \
--build-arg ANDROID_BUILD_TOOLS_VERSION="26.0.2" \
.# Run the `ionic-jenkins-container` container, loading environment variables from the file `env.dev` into the container.
$ docker run \
--rm \
-it \
--name=ionic-ci-cd-container \
-v ${PWD}:$HOME/notes-app-ionic-pro \
-w $HOME/notes-app-ionic-pro \
--env-file ./ci/env.dev \
ionic-ci-cd
```The above should provide you with a Docker container within which you can begin developing.
## Style guide
To check for style compliance within shell scripts, use [shellcheck](https://github.com/koalaman/shellcheck):
```
# Searches for all files that end with '.sh' and runs them through 'shellcheck'
$ find ./ci/ -type f -name '*.sh' -exec shellcheck {} \;
```## Modus Create
[Modus Create](https://moduscreate.com) is a digital product consultancy. We use a distributed team of the best talent in the world to offer a full suite of digital product design-build services; ranging from consumer facing apps, to digital migration, to agile development training, and business transformation.
[](https://moduscreate.com)
## Licensing
This project is [MIT licensed](./LICENSE).