1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 19:34:34 +00:00

Compare commits

..

6 Commits

Author SHA1 Message Date
munja
62de960e86 chore(release): 0.0.19 2022-01-20 10:39:34 +01:00
munja
31532c0efa fix: bumping sasjs/core and updating descriptions 2022-01-20 10:37:22 +01:00
Allan Bowe
732230524d Merge pull request #46 from sasjs/allanbowe-patch-1
Update README.md
2022-01-20 11:06:25 +02:00
Allan Bowe
6dc281313e Update README.md 2022-01-19 22:34:41 +00:00
munja
92db3c7c82 chore(release): 0.0.18 2022-01-08 20:24:57 +01:00
munja
d8b75a47d3 fix: compressing release files for faster download times 2022-01-08 20:22:22 +01:00
8 changed files with 1580 additions and 54 deletions

View File

@@ -32,10 +32,17 @@ jobs:
env:
CI: true
- name: Compress Executables
working-directory: ./executables
run: |
zip linux.zip api-linux
zip macos.zip api-macos
zip windows.zip api-win.exe
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
./executables/api-linux
./executables/api-macos
./executables/api-win.exe
./executables/linux.zip
./executables/macos.zip
./executables/windows.zip

View File

@@ -2,6 +2,20 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.0.19](https://github.com/sasjs/server/compare/v0.0.18...v0.0.19) (2022-01-20)
### Bug Fixes
* bumping sasjs/core and updating descriptions ([31532c0](https://github.com/sasjs/server/commit/31532c0efa41e53f87377a2c7c41d21c7909e3a0))
### [0.0.18](https://github.com/sasjs/server/compare/v0.0.17...v0.0.18) (2022-01-08)
### Bug Fixes
* compressing release files for faster download times ([d8b75a4](https://github.com/sasjs/server/commit/d8b75a47d305e0772ccbf8837ba4d7347b94cc93))
### [0.0.17](https://github.com/sasjs/server/compare/v0.0.16...v0.0.17) (2022-01-07)

View File

@@ -10,7 +10,15 @@ One major benefit of using SASjs Server (alongside other components of the SASjs
## Installation
Just download the relevant package from the [releases](https://github.com/sasjs/server/releases) page and trigger, either by double clicking (windows) or executing from commandline.
First, download the relevant package from the [releases](https://github.com/sasjs/server/releases) page - either manually, or with commandline, eg as follow:
```bash
curl -L https://github.com/sasjs/server/releases/latest/download/linux.zip > linux.zip
unzip linux.zip
./api-linux
```
Second, trigger by double clicking (windows) or executing from commandline.
You are presented with two prompts:

14
api/package-lock.json generated
View File

@@ -8,7 +8,7 @@
"name": "api",
"version": "0.0.1",
"dependencies": {
"@sasjs/core": "^3.0.2",
"@sasjs/core": "3.11.0",
"@sasjs/utils": "2.34.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
@@ -1551,9 +1551,9 @@
}
},
"node_modules/@sasjs/core": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-3.0.2.tgz",
"integrity": "sha512-KP1DP7t1TJa71xA7FmmN+ZTlEcwRNzz/0DC/oistvva64j7Tpu5BgZRUAj/u3yE1Z6+OmRYKKLjugxsQX0s2Tw==",
"version": "3.11.0",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-3.11.0.tgz",
"integrity": "sha512-S+ShlAjXTm0OdmOoqaiQxx9IV5BigpSuHUMKSFlZRbkB1YMtKS6Q0OVpZa+zn7Q5g5wd8JAS7GmFjquoOgfONw==",
"dependencies": {
"ts-loader": "^9.2.6"
}
@@ -16665,9 +16665,9 @@
}
},
"@sasjs/core": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-3.0.2.tgz",
"integrity": "sha512-KP1DP7t1TJa71xA7FmmN+ZTlEcwRNzz/0DC/oistvva64j7Tpu5BgZRUAj/u3yE1Z6+OmRYKKLjugxsQX0s2Tw==",
"version": "3.11.0",
"resolved": "https://registry.npmjs.org/@sasjs/core/-/core-3.11.0.tgz",
"integrity": "sha512-S+ShlAjXTm0OdmOoqaiQxx9IV5BigpSuHUMKSFlZRbkB1YMtKS6Q0OVpZa+zn7Q5g5wd8JAS7GmFjquoOgfONw==",
"requires": {
"ts-loader": "^9.2.6"
}

View File

@@ -44,9 +44,9 @@
"main"
]
},
"author": "Analytium Ltd",
"author": "4GL Ltd",
"dependencies": {
"@sasjs/core": "^3.0.2",
"@sasjs/core": "3.11.0",
"@sasjs/utils": "2.34.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",

View File

@@ -401,7 +401,7 @@ info:
version: 0.0.1
description: 'Api of SASjs server'
contact:
name: 'Analytium Ltd'
name: '4GL Ltd'
openapi: 3.0.0
paths:
/SASjsApi/auth/authorize:

1575
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "server",
"version": "0.0.17",
"version": "0.0.19",
"description": "NodeJS wrapper for calling the SAS binary executable",
"repository": "https://github.com/sasjs/server",
"scripts": {