meadow-endpoints 2.0.14 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.travis.yml DELETED
@@ -1,21 +0,0 @@
1
- language: node_js
2
- node_js:
3
- - "8"
4
- - "10"
5
- - "12"
6
- - "14"
7
- - "15"
8
- services:
9
- - mysql
10
- before_install:
11
- - mysql -e 'CREATE DATABASE FableTest;'
12
- addons:
13
- code_climate:
14
- repo_token: b0b7492746ebd2075419cab324ea69ab4f444baeb687a1e4cad47e04216af7f6
15
- after_success:
16
- - npm run coverage
17
- after_script:
18
- - cat coverage/lcov.info | ./node_modules/codeclimate-test-reporter/bin/codeclimate.js
19
- - cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
20
- notifications:
21
- slack: paviateam:C1q99hL9XXpiPpau2PUrVZPC
package/cloud9setup.sh DELETED
@@ -1,25 +0,0 @@
1
- #! /bin/bash
2
- echo "Setup a Cloud9 environment for Meadow Endpoints"
3
- echo "MIT License."
4
- echo "steven velozo <steven@velozo.com>"
5
- echo ""
6
- echo "---"
7
- echo ""
8
- echo "## MySQL Parameters exist. Script running!"
9
- echo "##"
10
- echo ""
11
- echo "!! This may be bad to run on anything but a Cloud9 virtual machine !!"
12
- echo ""
13
- read -p "Press [Enter] key to configure the environment..."
14
- echo ""
15
- echo "## Initializing the Cloud9 database environment..."
16
- time mysql-ctl start
17
- echo ""
18
- echo "## Creating Fable and Meadow databases and users..."
19
- time mysql-ctl cli < test/scripts/InitializeDatabase-C9.sql
20
- echo ""
21
- echo "## Remember to Switch to node 8.x by running these commands..."
22
- echo "nvm use 8"
23
- echo "nvm alias default 8"
24
- echo ""
25
- echo "## And we're done! Have a great day."