Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 2.04 KB

README.md

File metadata and controls

53 lines (34 loc) · 2.04 KB

Impact website 2.0

Build Status Codacy Badge code style: prettier

How to use

First install npm, then run

npm install
npm start

This will first install all dependancies, then run a development server complete with auto-reload.

IDE setup

Atom

You can install these by running apm i linter linter-eslint editorconfig

Intellij IDEA and WebStorm

You can use Intellij's Required Plugins feature: Intellij Required Plugins

You can use the included Run Configurations to run in debugging mode, build the static site or run tests.

VSCode

You'll want to install the following plugins in your workspace:

# Bash one-liner
for ext in "dbaeumer.vscode-eslint" "editorconfig.editorconfig"; do code --install-extension $ext; done

Or use VSCode's built in Recommended Extensions feature: VSCode workspace-recommended-extensions documentation

You can use the included debug profile to run the development server in debugging mode.