I forgot (again) that I was going to put that together. These are the current specs for my machine.
- Windows 10
- node.js v8.5.0
- npm v5.3.0
After cloning the project and running
npm install, the app won't build when you run
npm start. This is due to missing dependency angular-legacy-sortablejs. There appears to be a direct link in the package.json file for that dependency, so I did the following steps to hack it into working. I'm not sure if it's a good solution, but the app built and seemed to run without crashing.
- Run the command: npm install angular-legacy-sortablejs --save-dev.
- Navigate to the "node_modules" directory.
- Rename "angular-legacy-sortablejs-maintained" directory to "angular-legacy-sortablejs".
- Try running npm start again.
That should get the app up and running, but logging in and syncing likely won't work. You may need to set up some proxy stuff to connect to the central authentication and syncing server. i didn't quite get that far...