Skip to content

Commit

Permalink
Release v1.0.2 - Updates for RENDER Deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator committed Nov 6, 2022
1 parent 4273c6b commit 54994f3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [v1.0.2] 2022-11-06
### Improvements

- Updated for Deploy on RENDER using [Python Deployer](https://github.com/app-generator/deploy-automation-render)
- `python.exe .\deployer.py nodejs https://github.com/app-generator/api-server-nodejs`
- The new API is usable via `https://api-server-nodejs-<RANDOM>.onrender.com/api/`

## [v1.0.1] 2022-06-02
### Improvements

Expand Down
31 changes: 12 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,22 @@ Authentication Flow uses `json web tokens` via Passport library - `passport-jwt`

> Features:
- [API Definition](https://docs.appseed.us/boilerplate-code/api-unified-definition) - the unified API structure implemented by this server
- Simple, intuitive codebase - can be extended with ease.
- TypeScript, Joy for validation
- **Stack**: NodeJS / Express / SQLite / TypeORM
- Auth: Passport / `passport-jwt` strategy
- [API Definition](https://docs.appseed.us/boilerplate-code/api-unified-definition) - the unified API structure implemented by this server
- Simple, intuitive codebase - can be extended with ease.
- `TypeScript`, `Joy` for validation
- **Stack**: NodeJS / Express / SQLite / TypeORM
- Auth: Passport / `passport-jwt` strategy

<br />

> Tested with:
| NodeJS | NPM | YARN | Status |
| --- | --- | --- | --- |
| `v17.0.0` | `v8.11.0` | `v1.22.18` | ✔️ |
| `v16.15.1` | `v8.11.0` | `v1.22.18` | ✔️ |
| `v16.13.0` | `v8.1.0` | `v1.22.5` | ✔️ |
| NodeJS | NPM | YARN |
| --- | --- | --- |
| `v18.0.0` |||
| `v17.0.0` |||
| `v16.13.0` |||
| `v16.0.0` |||

<br />

Expand Down Expand Up @@ -56,11 +57,9 @@ $ cd api-server-nodejs

<br />

> **Step 2** - Install dependencies via NPM or Yarn
> **Step 2** - Install dependencies via `Yarn`
```bash
$ npm i
// OR
$ yarn
```

Expand All @@ -77,8 +76,6 @@ $ yarn typeorm migration:run
> **Step 4** - Start the API server (development mode)
```bash
$ npm run dev
// OR
$ yarn dev
```

Expand All @@ -87,8 +84,6 @@ $ yarn dev
> **Step 5** - Production Build (files generated in `build` directory)
```bash
$ npm run build
// OR
$ yarn build
```

Expand All @@ -97,8 +92,6 @@ $ yarn build
> **Step 6** - Start the API server for production (files served from `build/index.js`)
```bash
$ npm run start
// OR
$ yarn start
```

Expand Down

0 comments on commit 54994f3

Please sign in to comment.