Skip to content

Commit

Permalink
replace heroku
Browse files Browse the repository at this point in the history
  • Loading branch information
iamnapo committed Jan 7, 2023
1 parent 0ca5f14 commit 21dd0a7
Show file tree
Hide file tree
Showing 17 changed files with 9,125 additions and 5,988 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

> Server-side code of the cbmjs platform.
[![build](https://img.shields.io/github/workflow/status/cbmjs/cbm-engine/CI?style=for-the-badge&logo=github&label=)](https://github.com/cbmjs/cbm-engine/actions) [![license](https://img.shields.io/github/license/cbmjs/cbm-engine.svg?style=for-the-badge)](./LICENSE)
[![Deploy](https://img.shields.io/badge/%E2%AC%86%EF%B8%8FDeploy%20to-Heroku-6762a6.svg?style=for-the-badge)](https://heroku.com/deploy)
[![build](https://badges.iamnapo.me/ci/cbmjs/cbm-engine)](https://github.com/cbmjs/cbm-engine/actions) [![Deploy](https://img.shields.io/badge/%E2%AC%86%EF%B8%8FDeploy%20to-Render-4f65f1.svg?style=for-the-badge)](https://render.com/deploy?repo=https://github.com/cbmjs/cbm-engine)

## Intro

Expand Down
15 changes: 0 additions & 15 deletions app.json

This file was deleted.

4 changes: 2 additions & 2 deletions docs/CALLBYMEANING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If any of the above isn't applicable, for example if you ask for a function with

``` javascript
const request = require('request');
const uri = 'https://call-by-meaning.herokuapp.com/cbm/call';
const uri = 'https://call-by-meaning.onrender.com/cbm/call';
let bday = new Date(1993, 2, 24);
let params = {
'inputConcepts': 'date',
Expand All @@ -39,4 +39,4 @@ let req = request.post(uri, {form: params}, function (err, response, body) {
console.log('I was born on 23rd of March and that makes me an %s!', body);
});
// yes, Date() in javascript is weird.
```
```
4 changes: 2 additions & 2 deletions docs/GETBYMEANING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ If any of the above isn't applicable, for example if you ask for a function with

``` javascript
const request = require('request');
const uri = 'https://call-by-meaning.herokuapp.com/gbm/search';
const uri = 'https://call-by-meaning.onrender.com/gbm/search';
let params = {
'inputConcepts': 'date',
'outputConcepts': 'time'
};
let req = request.post(uri, {form: params}, function (err, response) {
// Insert code here...
});
```
```
2 changes: 1 addition & 1 deletion docs/GETBYNAME.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ https://call-by-meaning.com/gbn/c/clock -> returns info about the (similar exist
https://call-by-meaning.com/gbn/f/getTime -> returns info about the function "getTime"
https://call-by-meaning.com/gbn/r/unitConversion -> returns info about the relation "unitConversion"
```
```
2 changes: 1 addition & 1 deletion docs/MODELS.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ Every `Relation` document in the database contains the following parameters:

## Note

You can view every available object by sending a GET request to `~/all/{concepts|functions|relations}` or `~/all/{concepts|functions|relations}/{names|desriptions}`
You can view every available object by sending a GET request to `~/all/{concepts|functions|relations}` or `~/all/{concepts|functions|relations}/{names|desriptions}`
Loading

0 comments on commit 21dd0a7

Please # to comment.