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
| -- ========================================== | |
| -- 1. DROP TABLES IF EXIST (Clean Slate) | |
| -- ========================================== | |
| DROP TABLE IF EXISTS Billing; | |
| DROP TABLE IF EXISTS Encounters; | |
| DROP TABLE IF EXISTS Patients; | |
| -- ========================================== | |
| -- 2. CREATE TABLES | |
| -- ========================================== |
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
| # Make sure that you have installed all the required dependencies | |
| # https://facebook.github.io/watchman/docs/install.html#installing-from-source | |
| # Make sure that you have autoconf 2.69 | |
| brew uninstall autoconf | |
| brew install autoconf@2.69 | |
| # add it to your shell / zsh PATH | |
| git clone https://github.com/facebook/watchman.git | |
| cd watchman | |
| git checkout v4.9.0 | |
| ./autogen.sh |
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
| nodeModulesToVendor: [ | |
| new Funnel('node_modules/autosize/dist/', { | |
| files: ['autosize.js'] | |
| }), | |
| new Funnel('node_modules/bootstrap/dist/js/', { | |
| files: ['bootstrap.js'] | |
| }) | |
| ] |