Files
2020-03-30 23:55:14 -04:00

26 lines
912 B
Markdown

# Developing
We'll gladly merge Pull requests if you're keen to get hands on with the development!
## Requirements
* Node v8.4.0+
## Running
1. Clone the repo: `git clone https://github.com/samcm/SyncLounge`
1. Change to the directory: `cd synclounge`
1. Install packages and dependencies: `npm install`
1. Run the development server: `npm run dev`
Once Webpack has finished compiling, navigate to `http://localhost:8080` in your web browser.
Notes:
* Hot reload is enabled!
* It is suggested to install Vue.js [Devtools](https://vuejs.org/v2/cookbook/debugging-in-vscode.html#Vue-Devtools)
* [Chrome Extension](https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd)
* [Firefox Addon](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/)
* If you use VS Code, see VueJS's [Debugging in VS Code](https://vuejs.org/v2/cookbook/debugging-in-vscode.html)