Skip to content

Commit

Permalink
🔄 synced file(s) with circlefin/pw-sdk-nodejs-server-internal (#5)
Browse files Browse the repository at this point in the history
synced local file(s) with
[circlefin/pw-sdk-nodejs-server-internal](https://github.com/circlefin/pw-sdk-nodejs-server-internal).



<details>
<summary>Changed files</summary>
<ul>
<li>synced local <code>README.md</code> with remote
<code>README.md</code></li><li>synced local directory <code>src/</code>
with remote directory <code>src/</code></li>
</ul>
</details>

---

This PR was created automatically by the
[repo-file-sync-action](https://github.com/BetaHuhn/repo-file-sync-action)
workflow run
[#8885056587](https://github.com/circlefin/pw-sdk-nodejs-server-internal/actions/runs/8885056587)
  • Loading branch information
tgu-circle authored Apr 29, 2024
2 parents dc58f81 + 021cc0e commit 60cdae4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This is a sample backend server that plays a part in the larger Sample App proje

## Get Started

Run the following commands to start the server with an in-memory SQLite database at `localhost:8080`:
Run the following commands to start the server with an in-memory SQLite database at `localhost:8080/pw-user-controlled/foundational`:

``` bash
nvm use
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ initDB();

const port = process.env.PORT ?? 8080;
const server = app.listen(port, () => {
logger.info(`Server is running at http://localhost:${port}`);
logger.info(
`Server is running at http://localhost:${port}/pw-user-controlled/foundational`
);
});

process.on('SIGINT', function () {
Expand Down

0 comments on commit 60cdae4

Please sign in to comment.