Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skhokhlov/worldfly.org
The worldfly.org website
https://github.com/skhokhlov/worldfly.org
Last synced: about 1 month ago
JSON representation
The worldfly.org website
- Host: GitHub
- URL: https://github.com/skhokhlov/worldfly.org
- Owner: skhokhlov
- Created: 2013-07-21T17:51:30.000Z (over 11 years ago)
- Default Branch: dev
- Last Pushed: 2016-05-29T19:26:23.000Z (over 8 years ago)
- Last Synced: 2024-04-15T13:24:36.641Z (8 months ago)
- Language: JavaScript
- Homepage: https://www.worldfly.org
- Size: 8.39 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#worldfly.org
The [worldfly.org](https://www.worldfly.org) websiteYou can try last version on https://debug.worldfly.org
##Idea
Make a website as easy scalable, fast, one-page application with the templating and good search engine optimization using [BEM methodology](https://en.bem.info/method/).* Templating: [Yate](https://github.com/pasaran/yate)
* CSS pre-processor: [Stylus](https://github.com/stylus/stylus)
* Building: [Gulp](https://github.com/gulpjs/gulp)# Getting Started
## Installing
1. Install Node.js
https://github.com/joyent/node/wiki/Installation2. Check out the repository:
```
git clone [email protected]:skhokhlov/worldfly.org.git
cd worldfly.org
```3. Install node dependencies:
```
npm install
```## Build and run the app
1. Build assets
```
gulp
```
2. Run app
```
npm start
```After you can check running the app by hitting the following URLs:
* [http://localhost:3000/](http://localhost:3000/)
* [http://localhost:3000/projects](http://localhost:3000/projects)#Tests
[![Build Status](https://travis-ci.org/skhokhlov/worldfly.org.svg?branch=dev)](https://travis-ci.org/skhokhlov/worldfly.org)Testing using [mocha](https://github.com/mochajs/mocha)
Tests should validate the correctness of status codes and returns compiled pages on the server.
For testing:
```
npm test
```