This repository uses CXCloud Core Services module and shows off it's capabilities. You can use this as a starting point for your CXCloud projects.
This project uses node-config
for configuration and git-crypt
for encryption of configuration files.
To setup git-crypt
follow this detailed guide.
This project's master branch is automatically deployed and is available on https://demo.cxcloud.com/api/.
If you have run the project with a NODE_ENV
set to any value other than production
, a Swagger API Documentation will be available under the /api/v1/api-docs
URL.
- Create clone of this repository and navigate to it:
$ git clone https://github.com/cxcloud/api-accelerator.git
$ cd api-accelerator
- Remove git tracking and create a new repository:
$ rm -rf .git
$ git init
- Add and verify a new remote:
$ git remote add origin https://github.com/*user*/*repo*.git
$ git remote -v
- Push to new remote:
$ git commit -am "Initial commit"
$ git push --set-upstream origin master [--force]