Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
rjcodedev committed Jun 12, 2024
2 parents 4151cb0 + 9a3f0fd commit 47cb964
Show file tree
Hide file tree
Showing 5 changed files with 647 additions and 581 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## [1.3.1](https://github.com/ParsePlatform/parse-server-example/compare/1.3.0...1.3.1) (2024-03-29)


### Bug Fixes

* Security upgrade express from 4.18.2 to 4.19.2 ([#458](https://github.com/ParsePlatform/parse-server-example/issues/458)) ([cbe730f](https://github.com/ParsePlatform/parse-server-example/commit/cbe730f3698eb1f4b6bc0d54bc153298f82bdf21))

# [1.3.0](https://github.com/ParsePlatform/parse-server-example/compare/1.2.4...1.3.0) (2024-03-10)


### Features

* Run with latest Google App Engine Flex environment requirements ([#454](https://github.com/ParsePlatform/parse-server-example/issues/454)) ([d87d5f1](https://github.com/ParsePlatform/parse-server-example/commit/d87d5f11806b795f8312e960cad7e51377f0a2b7))

## [1.2.4](https://github.com/ParsePlatform/parse-server-example/compare/1.2.3...1.2.4) (2024-03-01)


### Bug Fixes

* Upgrade parse-server from 6.3.1 to 6.5.0 ([#452](https://github.com/ParsePlatform/parse-server-example/issues/452)) ([434e634](https://github.com/ParsePlatform/parse-server-example/commit/434e6340bf9391fd1e84c363c9270c1b2c68f3e0))

## [1.2.3](https://github.com/ParsePlatform/parse-server-example/compare/1.2.2...1.2.3) (2023-11-11)


Expand Down
4 changes: 4 additions & 0 deletions app.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
runtime: nodejs
env: flex

runtime_config:
operating_system: "ubuntu22"
runtime_version: "18"

env_variables:
# --REQUIRED--
DATABASE_URI: mongodb://localhost:27017/dev
Expand Down
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ export const config = {

export const app = express();

app.set('trust proxy', true);

// Serve static assets from the /public folder
app.use('/public', express.static(path.join(__dirname, '/public')));

Expand Down
Loading

0 comments on commit 47cb964

Please sign in to comment.