Skip to content

reneolivo/citas

Repository files navigation

Citas

A simple appointment app using LoopBack and Aurelia.


Setup:

npm install and cd client; npm install


Running for development:

On the root folder run npm start. The following urls will be available to you:


Models

Person

(private)

  • firstName: string
  • lastName: string
  • identification: string
  • landLine: text
  • mobile: text
  • email: text
  • notes: text

Professional

Extends Person (public)

  • specialties: string[]

Client

Extends Person (public)

AvailabilityTemplate

(public)

  • timeStarts: integer
  • timeEnds: integer
  • limit: integer

Availability

Extends AvailabilityTemplate (public)

  • professional: Professional
  • weekDay: integer
  • timeStarts: integer
  • timeEnds: integer
  • limit: integer

Appointment

(public)

  • client: Client
  • availability: Availability
  • date: Date
  • notes: text

About

An appointment app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published