Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fork #33

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7feabaa
Updates node version from 6.12 to 10.16
aliuk2012 Jun 21, 2019
b895f3a
updates eslint to 5.16.0
aliuk2012 Jun 21, 2019
68f2826
Update sass-lint from 1.12.1 to 1.13.1
aliuk2012 Jun 21, 2019
1126120
update grunt-contrib-compress from 1.4 to 1.5
aliuk2012 Jun 21, 2019
648b92d
updated node-sass from 4.11 to 4.12
aliuk2012 Jun 21, 2019
c7e8493
updates govuk-frontend from 2.10 to 2.13
aliuk2012 Jun 21, 2019
7e6bb6f
updated snyk from 1.151.0 to 1.179.1
aliuk2012 Jun 21, 2019
c13aacf
Updates node version from 6.12 to 10.16 and a couple other depend… (#19)
aliuk2012 Jun 24, 2019
d293f76
bump Standard from v.12 to v.13
aliuk2012 Jul 15, 2019
91d9571
Fix error when exiting `npm start`
aliuk2012 Jul 15, 2019
dd53db6
Updates babel dependencies
aliuk2012 Jul 15, 2019
768ed44
Bumps eslint from v5 to v6.0.1
aliuk2012 Jul 15, 2019
3020d65
Bumps lodash to v4.17.14
aliuk2012 Jul 15, 2019
56fd6e4
Bumps grunt-concurrent from 2.3.x to 3.0.0
aliuk2012 Jul 15, 2019
b1fe10c
Bump Snyk from 1.179 to 1.193
aliuk2012 Jul 15, 2019
b23fca8
Update dependencies and address security notices (#20)
aliuk2012 Jul 15, 2019
7b194c3
Watch for template changes and livereload
jonheslop Jul 23, 2019
466c53b
Snyk should be part of PR and build pipeline
jonheslop Jul 23, 2019
e6b9784
Watch for template changes too (#21)
jonheslop Jul 24, 2019
822f7be
Bump minimist from 1.2.0 to 1.2.2
dependabot[bot] Mar 14, 2020
97d32a2
Merge pull request #22 from alphagov/dependabot/npm_and_yarn/minimist…
MuriloDalRi Mar 16, 2020
fccf66e
Bump extend from 3.0.1 to 3.0.2
dependabot[bot] Mar 16, 2020
e3c03f5
Bump mixin-deep from 1.3.1 to 1.3.2
dependabot[bot] Mar 16, 2020
c9bdcad
Bump fstream from 1.0.11 to 1.0.12
dependabot[bot] Mar 16, 2020
fc43b80
Bump minimist from 1.2.2 to 1.2.3
dependabot[bot] Apr 4, 2020
b4a31a9
Merge pull request #24 from alphagov/dependabot/npm_and_yarn/extend-3…
MuriloDalRi Apr 7, 2020
3f00f69
Merge pull request #26 from alphagov/dependabot/npm_and_yarn/fstream-…
MuriloDalRi Apr 7, 2020
3f9b6ff
Merge pull request #27 from alphagov/dependabot/npm_and_yarn/minimist…
MuriloDalRi Apr 7, 2020
991c577
Merge pull request #25 from alphagov/dependabot/npm_and_yarn/mixin-de…
MuriloDalRi Apr 7, 2020
81fe15f
Merge with https://github.com/alphagov/gds-nodejs-boilerplate
lambley Aug 30, 2024
728c409
Merge remote-tracking branch 'upstream/master' into update-fork
lambley Aug 30, 2024
879cdab
remove extra curly brace
lambley Aug 30, 2024
9590453
merge readme
lambley Aug 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,41 +9,47 @@ It is built on top of the [BEIS SPL common](https://github.com/UKGovernmentBEIS/
### Installs

#### Required
* [Git](https://git-scm.com/)
* [Node](https://nodejs.org/en/)

- [Git](https://git-scm.com/)
- [Node](https://nodejs.org/en/)

#### Recommended

* [Visual Studio Code](https://code.visualstudio.com/) and these extensions:
* [Nunjucks VSCode Extension Pack](https://marketplace.visualstudio.com/items?itemName=douglaszaltron.nunjucks-vscode-extensionpack)
* [EditorConfig for VSCode](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig)
* [StandardJS - JavaScript Standard Style](https://marketplace.visualstudio.com/items?itemName=chenxsan.vscode-standardjs)
* [LiveReload](http://livereload.com/extensions/) browser extension
- [Visual Studio Code](https://code.visualstudio.com/) and these extensions:
- [Nunjucks VSCode Extension Pack](https://marketplace.visualstudio.com/items?itemName=douglaszaltron.nunjucks-vscode-extensionpack)
- [EditorConfig for VSCode](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig)
- [StandardJS - JavaScript Standard Style](https://marketplace.visualstudio.com/items?itemName=chenxsan.vscode-standardjs)
- [LiveReload](http://livereload.com/extensions/) browser extension

### Set up

Clone this code with Git:

```
git clone [email protected]:UKGovernmentBEIS/beis-spl-planner.git
```

Add the common project as a second remote in Git, to pull changes from there when needed:

```
git remote add common [email protected]:UKGovernmentBEIS/beis-spl-common.git
git fetch common
```

Navigate to the root of the project and install NPM packages:

```
npm install
```

### Running the project in development

Once NPM packages have been installed, run the project locally with:

```
npm run dev
```

You should now be able to see the project running at http://localhost:3000/ in your browser.

If you have installed the LiveReload browser extension as above, then you can enable it once on the page. This will cause the page to automatically reload when you make changes to any file.
Loading