https://github.com/adamj/testing_environment
test html and css environment for UX work
https://github.com/adamj/testing_environment
Last synced: 3 months ago
JSON representation
test html and css environment for UX work
- Host: GitHub
- URL: https://github.com/adamj/testing_environment
- Owner: AdamJ
- Created: 2016-11-15T15:28:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-06T12:53:36.000Z (over 9 years ago)
- Last Synced: 2025-03-22T10:42:44.231Z (over 1 year ago)
- Language: HTML
- Homepage: mindreeper2420.github.io/testing_environment
- Size: 1.76 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Testing Environment
This repo is for testing UX Designs using HTML and CSS in a static environment.
### Resources:
- PatternFly 3
- Bootstrap 3
- Node
- Bower
- Gulp
## Prerequisites:
This repo assumes that you have Node and Bower installed and know how to use each of those.
- [Node.js](https://nodejs.org/en/)
- [Bower.io](https://bower.io)
If you are using MacOS, I recommend using [Homebrew](http://brew.sh) for your package manager. You can download Nodejs v6(LTS) directly from there.
## Installation
* Step 1:
- Fork and Clone the repo
* Step 2:
- run `npm Install`
this install the npm modules, which are required for the project to run
* Step 3:
- run `bower install`
this will install the bower components, which are required for the site to render
* Step 4:
- run `gulp`
this will run through all of the initial setup script setups
If there are errors with these scripts, please verify that you have NodeJS installed correctly
## Development & Usage
By running the default `gulp` command, all of the required library and component pieces will be moved over the the /dist directory. If you wish to build your SASS or JS as well, you can run either `gulp sass` or `gulp js`.
If you wish to run the project in a local environment, you can enter the command `gulp serve`. This will start up a synchronized browser, which will automatically refresh upon any HTML, SASS, or JS change (utilizing the `gulp sass` and `gulp js` commands).