Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/databases/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Especially for production environments, performing regular backups and monitorin

- **Observability**: Implement monitoring for insights into performance and health of your databases. If you're not already running an observability stack, check out these templates to help you get started building one:
- [Prometheus](https://railway.com/deploy/KmJatA)
- [Grafana](https://railway.com/deploy/anURAt)
- [Grafana](https://railway.com/deploy/grafana-open-source-observability-platform--grafana-monitoring-dashboard)

## Additional resources

Expand Down
2 changes: 1 addition & 1 deletion content/docs/databases/postgresql.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Especially for production environments, performing regular backups and monitorin

- **Observability**: Implement monitoring for insights into performance and health of your databases. If you're not already running an observability stack, check out these templates to help you get started building one:
- [Prometheus](https://railway.com/deploy/KmJatA)
- [Grafana](https://railway.com/deploy/anURAt)
- [Grafana](https://railway.com/deploy/grafana-open-source-observability-platform--grafana-monitoring-dashboard)
- [PostgreSQL Exporter](https://railway.com/deploy/gDzHrM)

## Extensions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ npm install -D typescript @types/node @types/express tsx
- [Express](https://expressjs.com/) - Web framework for Node.js
- [dotenv](https://www.npmjs.com/package/dotenv) - Loads environment variables from `.env` files
- [TypeScript](https://www.typescriptlang.org/) - Typed superset of JavaScript
- [tsx](https://tsx.is/) - TypeScript execution engine
- [tsx](https://tsx.hirok.io/) - TypeScript execution engine

### Configure TypeScript

Expand Down Expand Up @@ -172,7 +172,7 @@ Update your `package.json` to include the necessary scripts. Learn more about [n

### Run the development server

Now you can run your TypeScript application using [tsx](https://tsx.is/), which provides seamless TypeScript execution without worrying about configuration:
Now you can run your TypeScript application using [tsx](https://tsx.hirok.io/), which provides seamless TypeScript execution without worrying about configuration:

```bash
npm run dev
Expand Down