This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Monday - 09:00AM – 09:15AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 09:15AM – 09:30AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 09:30AM – 09:45AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 09:45AM – 10:00AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 10:00AM – 10:15AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 10:15AM – 10:30AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 10:30AM – 10:45AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 10:45AM – 11:00AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 11:00AM – 11:15AM Client 1 [ 'Therapist 1', 'Therapist 2' ] | |
| Monday - 11:15AM – 11:30AM Client 1 [ 'Therapist 1', 'Therapist 2' ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return new Promise((resolve, reject) => { | |
| mongoose.connect(DATABASE_URL, err => { | |
| if (err) { | |
| return reject(err); | |
| } | |
| server = app.listen(port, () => { | |
| console.log(`Your app is listening on port $ {port}`); | |
| resolve(server); | |
| }).on('error', err => { | |
| reject(err); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NOESIS_WORKSPACE="/Users/paden/workspace/noesis" | |
| #edit Hosts file | |
| hosts() | |
| { | |
| subl /etc/hosts | |
| } | |
| #Go into your noesis workspace | |
| ne() |