https://github.com/mitocgroup/deep-microservices-root-angular1
Root Angular Microservice built on top of DEEP Framework and used in DEEP Marketplace
https://github.com/mitocgroup/deep-microservices-root-angular1
angular1 cloud-native deep-framework full-stack javascript serverless
Last synced: 6 months ago
JSON representation
Root Angular Microservice built on top of DEEP Framework and used in DEEP Marketplace
- Host: GitHub
- URL: https://github.com/mitocgroup/deep-microservices-root-angular1
- Owner: MitocGroup
- License: mit
- Created: 2015-10-07T17:54:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-09-13T07:43:04.000Z (over 8 years ago)
- Last Synced: 2025-04-25T11:43:27.289Z (9 months ago)
- Topics: angular1, cloud-native, deep-framework, full-stack, javascript, serverless
- Language: JavaScript
- Homepage: https://www.deep.mg
- Size: 2.95 MB
- Stars: 3
- Watchers: 16
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Roadmap: ROADMAP.md
Awesome Lists containing this project
README
deep-microservices-root-angular1
================================
[](https://travis-ci.org/MitocGroup/deep-microservices-root-angular1)
[](https://codeclimate.com/github/MitocGroup/deep-microservices-root-angular1)
deep-microservices-root-angular1 is the fundamental building block used by cloud-native web applications
built on top of [DEEP Framework](https://github.com/MitocGroup/deep-framework) and
[Angular JS](https://angularjs.org). This microservice provides the root structure of the web application
that is developed using Angular framework and AngularUI module.
## Getting Started
### Step 1. Pre-requisites
- [x] [Create an Amazon Web Services account](https://www.youtube.com/watch?v=WviHsoz8yHk)
- [x] [Configure AWS Command Line Interface](https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html)
- [x] [Get Started - Installing Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
- [x] [JDK 8 and JRE 8 Installation Start Here](https://docs.oracle.com/javase/8/docs/technotes/guides/install/install_overview.html)
- [x] [Install nvm](https://github.com/creationix/nvm#install-script) and [use node v6.10+](https://github.com/creationix/nvm#usage)
- [ ] Install DEEP CLI, also known as `deepify`:
```bash
npm install deepify -g
```
> If you want to use `deepify` on Windows, please follow the steps from
[Windows Configuration](https://github.com/MitocGroup/deep-framework/blob/master/docs/windows.md)
before running `npm install deepify -g` and make sure all `npm` and `deepify` commands are executed
inside Git Bash.
### Step 2. Install Microservice(s) Locally
```bash
deepify install github://MitocGroup/deep-microservices-todomvc ~/deep-microservices-todomvc
```
> Path parameter in all `deepify` commands is optional and if not specified, assumes current
working directory. Therefore you can skip `~/deep-microservices-todomvc` by executing
`mkdir ~/deep-microservices-todomvc && cd ~/deep-microservices-todomvc` before `deepify install`.
### Step 3. Run Microservice(s) in Development
```bash
deepify server ~/deep-microservices-todomvc -o
```
> When this step is finished, you can open in your browser the link *http://localhost:8000*
and enjoy the deep-microservices-todomvc running locally.
### Step 4. Deploy Microservice(s) to Production
```bash
deepify deploy ~/deep-microservices-todomvc
```
> Amazon CloudFront distribution takes up to 20 minutes to provision, therefore don’t worry
if it returns an HTTP error in the first couple of minutes.
### Step 5. Remove Microservice(s) from Production
```bash
deepify undeploy ~/deep-microservices-todomvc
```
> Amazon CloudFront distribution takes up to 20 minutes to unprovision. That's why `deepify`
command checks every 30 seconds if it's disabled and when successful, removes it from your account.
## Developer Resources
Having questions related to deep-microservices-root-angular1?
- Ask questions: https://stackoverflow.com/questions/tagged/deep-framework
- Chat with us: https://mitocgroup.slack.com/messages/general
- Send an email: feedback@mitocgroup.com
Interested in contributing to deep-microservices-root-angular1?
- Contributing: https://github.com/MitocGroup/deep-microservices-root-angular1/blob/master/CONTRIBUTING.md
- Issue tracker: https://github.com/MitocGroup/deep-microservices-root-angular1/issues
- Releases: https://github.com/MitocGroup/deep-microservices-root-angular1/releases
- Roadmap: https://github.com/MitocGroup/deep-microservices-root-angular1/blob/master/ROADMAP.md
Looking for web applications that use (or are similar to) deep-microservices-root-angular1?
- Hello World: https://hello.deep.mg | https://github.com/MitocGroup/deep-microservices-helloworld
- Todo App: https://todo.deep.mg | https://github.com/MitocGroup/deep-microservices-todomvc
- AdTechMedia: https://www.adtechmedia.io | https://github.com/AdTechMedia/adtechmedia-website
## Sponsors
This repository is being sponsored by:
- [Mitoc Group](https://www.mitocgroup.com)
- [AdTechMedia](https://www.adtechmedia.io)
This code can be used under MIT license:
> See [LICENSE](https://github.com/MitocGroup/deep-microservices-root-angular1/blob/master/LICENSE) for more details.