Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasjs/pagarme-challenge
:computer: Super Blog Challenge
https://github.com/lucasjs/pagarme-challenge
challenge css gulp javascript
Last synced: about 1 month ago
JSON representation
:computer: Super Blog Challenge
- Host: GitHub
- URL: https://github.com/lucasjs/pagarme-challenge
- Owner: lucasjs
- Created: 2017-10-30T17:18:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-06T08:18:49.000Z (over 7 years ago)
- Last Synced: 2024-11-15T19:04:33.248Z (3 months ago)
- Topics: challenge, css, gulp, javascript
- Language: HTML
- Homepage: https://lucasjs.github.io/pagarme-challenge/
- Size: 1.87 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pagar.me Challenge
## Stack
- Task Runner: [Gulp](http://gulpjs.com/)
- CSS Preprocessor: [Stylus](http://stylus-lang.com/)## Run the project locally
**1 -** Prepare the environment:
```sh
$ npm install -g gulp-cli
```**2 -** Clone the project and install the dependencies:
```
$ git clone https://github.com/lucasjs/pagarme-challenge.git
$ cd pagarme-challenge
$ npm install
```**3 -** Run static server and livereload:
```
$ gulp server
```## Folders
.
├── README.md
├── build/
├── src/
| ├── img/
| ├── styles/
| | └── modules/
| ├── svg/
| └── views/
├── gulpfile.js
├── package-lock.json
├── package.json
└── .gitignore## Automatic Tasks
- `$ gulp build:` Compile, concat and minify all files.
- `$ gulp server:` Watch the files to build and start a static server.
- `$ gulp deploy:` Deploy for gh-pages.