Daemon is a cross-platform frontend for a robotics control system. It's also the future.
- Ensure you have
git,npm. npm install -g brunch bowergit clone [this repo]cd daemonnpm installbower installnpm run compilernpm run app
You need the following stuff installed on your machine:
- Node.js & NPM (see the instructions for your operating system. Ensure that globally installed NPM modules are in your PATH!)
- Windows Users: Use a Git Bash or the PowerShell instead of CMD.exe !
- Linux Users: You may have to do a symlink.
- Git. (Brunch and Bower depend on Git to work.) Windows users: try this, there is a good usable CLI included which should work with the workflow out-of-the-box. The primitive CMD.exe is currently NOT supported.
- Brunch via a global npm installation:
npm install -g brunch. - Bower via a global npm installation:
npm install -g bower. npm installin your directory to install dependenciesbower installin your directory to install frontend
npm runto see the various scripts you can run.npm run compilerassembles your application into/_publicand watches file changes.npm run appstarts your application locally.npm run deploybuilds your app for windows, osx and linux. the binaries are placed in/distafter building.bower install <frontend-module>for any frontend-related stuff.npm install my-moduleinside ofapp/assetsto install node.js modules.