Skip to content

Commit

Permalink
chore: add general improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jm2097 committed Jun 6, 2023
1 parent a1a83ea commit f530b7e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Binary file modified apps/server/prisma/xsighub.db
Binary file not shown.
2 changes: 1 addition & 1 deletion apps/server/src/lib/config/config.builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class XsighubApiConfigBuilder {

const { port } = this._config.app;

return this._app.listen(port, () => {
return this._app.listen(port, '0.0.0.0', () => {
Logger.log(
`馃殌 Application is running on: http://localhost:${port} - config: ${envFilePath}`,
);
Expand Down
2 changes: 0 additions & 2 deletions examples/angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ export class AppComponent implements OnInit {
.fromEvent<SocketEvent>(__sessionSocketEvents__.updated)
.pipe(tap(({ message }) => console.log(message)))
.subscribe(({ session, source, action, data }) => {
console.log({ session, source, action, data });

this.session.set(session);

if (source === 'document' && action === 'create' && data) {
Expand Down
12 changes: 7 additions & 5 deletions examples/angular/src/app/references/docs/doc2.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
export const DOC_2 = `
# Ejercicios de terapia f铆sica
# Documento de ejemplo
Aqu铆 hay algunos ejercicios para ayudarlo a recuperarse de su lesi贸n:
Lorem ipsum
1. C铆rculos de hombros: Gire los hombros en un movimiento circular durante 10 repeticiones.
2. Flexiones de pared: P谩rese frente a una pared con los brazos extendidos y las palmas en la pared. B谩jese lentamente hacia la pared y luego emp煤jese hacia arriba durante 10 repeticiones.
3. Flexiones de rodilla: P谩rese con los pies separados al ancho de los hombros y doble lentamente las rodillas, manteniendo la espalda recta, durante 10 repeticiones.`;
# [metadata:medico]
# [metadata:paciente]
[signature:jane](Firma de John)`;

0 comments on commit f530b7e

Please sign in to comment.