fesk-home-page v1.0.0
Home Page
This project is to create M&S Home Page.
Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Creating the app
Clone the repository, preferably use ssh (git@github.com:DigitalInnovation/fesk-home-page.git)
Installing NodeJS
- Run
brew update - Run
brew install node - Check it's installed
node -v
*Or alternatively you can follow the official NodeJS installation guide.
Install nvm (Node Version Manager)
Only If you are using a MAC.
- Run
cd ~/ - Run
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.1/install.sh | bash - Run
nvm install 10.15.3
Install Node Modules
For first time installation, within the mns-fe-starter-kit repository
- Run
npm install
The mns-fe-starter-kit repository is shrink-wrapped (Find more on Shrinkwrapping here - https://docs.npmjs.com/cli/shrinkwrap). Hence the dependencies would be downloaded from npm-shrinkwrap.json instead of from package.json.
To download the latest version of dependencies, delete the npm-shrinkwrap.json file and then
- Run
npm install - Create a new shrinkwrap file
npm shrinkwrap --dev
(Find more here - https://github.com/DigitalInnovation/fesk-documentation/blob/master/how_tos/shrinkwrap_npm_dependencies.md)
Running the app
Run locally
When this is running locally it will run Liniting checks, unit tests and will automatically reload the application when making live code changes both client and server side.
- Run
npm run dev
Run production
This is how the application is started after deployment to an environment. This requires the bundled assets.
- Run
npm start
Run bundle
If you need to create a bundle locally.
- Run
npm run bundle
Running the tests
JS Linting
- Run
npm run lint:jsto lint all JS files in the src/ directory and webpack config files.
SASS Linting
- Run
npm run lint:sassto check linting issues in all.scssand.sassfiles insrcdirectory.
A config file named .sass-lint.yml is added at the root folder which contains the list of files included for lint test and rules. This overrides the default config file which is available with same name in node_module.
Unit testing
- Run
npm run test:unitto run all unit test files that end in.test.js
CI and Deployment
Concourse
We have extensive Concourse documentation which can be found here!
Deployment
Concourse
Before you can deploy your pipeline you will need to update TEAM_NAME in /ci/deploy-ci-dachs.sh to your concourse team name.
In majority of the cases deployment should be done via Concourse following the steps listed below:
1. Run ./deployment/deploy-ci.sh target hash providing two arguments: target - target enviroments (dev, sit2, sit3, perf or prod), please note: multiple enviroments can be supplied if necessary, hash - hash of the last commit which should be included in the release.
2. This will create a new tag in the project's repo master branch which will be picked up by correct Concourse pipeline.
3. At this point you should be able to go to Concourse and see how the build is progressing.
Please note: this style of deployment can ONLY be done on master. It is impossible to deploy from a branch using it.
Emergency local deployment
Emergency local deployment is created for the cases where Concourse is unavailable but deployment needs to proceed. To run emergency deploy the following prerequisites must be met.
cf-cli installation
On Mac: 1. Tap the Cloud Foundry formula repository:
brew tap cloudfoundry/tap- Install the cf-cli:
brew install cf-cliOn Linux:
Use instructions provided in the Cloud Foundry documentation.
Autopilot installation
- Download correct binary from the Autopilot's latest release page.
- Make binary executable by running
chmod a+x path_to_your_downloaded_binary- Run
cf install-plugin path_to_your_downloaded_binaryRunning emergency deployment
- Checkout commit you want to deploy to your local machine.
- Run
./deployment/deploy-emergency.sh target hashwhere target is the environment you wish to deploy to and hash is the git hash of the commit you wish to deploy
As with deployment from Concourse, this will create a tag on your current branch as a record of deployment.
How to
How to make a new page
- Create a new handlebars template in the
viewsdirectory. - In
src/server/routescreate a new directory with the handlers and routes you need. Don't forget to load them insrc/server/routes/index.js. - If you want client-side JavaScript and CSS, create a directory in
src/client. Add an entry point to the JavaScript file inwebpack.config.js. Require the SCSS file in the javascript file in order for it to be recognised by the build system.
/src
/client
/examplePage
examplePage.js
examplePage.scss
/server
/routes
/examplePage
handlers.js
handlers.test.js
routes.js
/views
examplePage.hbs
index.js <-- Edit
webpack.config.js <-- EditQuick Links To Relevant Repositories
- mns-fe-starter-kit
- Boilerplate application
- mns-fe-foundation
- Framework
- mns-core-ui-header
- Shared header files
- mns-core-ui
- Style guides and fundamental M&S UI files
- fesk-documentation
- FESK Documentation
6 years ago