diff --git a/.gitignore b/.gitignore index 849cd9de..ba8b7b1c 100644 --- a/.gitignore +++ b/.gitignore @@ -77,4 +77,8 @@ local.properties # Scala IDE specific (Scala & Java development for Eclipse) .cache-main .scala_dependencies -.worksheet \ No newline at end of file +.worksheet + +.DS_Store +node_modules/ +package-lock.json diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..e69de29b diff --git a/README.md b/README.md index 6c307cc1..7b9f2455 100755 --- a/README.md +++ b/README.md @@ -1,21 +1,14 @@ -# Official Website for Sustainable Education Foundation [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/SustainableEducationFoundation/LiveWeb/issues) [![HitCount](http://hits.dwyl.io/SustainableEducationFoundation/LiveWeb.svg)](http://hits.dwyl.io/SustainableEducationFoundation/LiveWeb) +# Official Website for Sustainable Education Foundation + +[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/sef-global/sef-site/issues) +[![HitCount](http://hits.dwyl.io/sef-global/sef-site.svg)](http://hits.dwyl.io/sef-global/sef-site) [![version](https://img.shields.io/badge/version-3.0.0-yellow.svg)](https://semver.org) +[![Build Status](https://travis-ci.org/sef-global/sef-site.svg?branch=master)](https://travis-ci.org/sef-global/sef-site) +[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sef-global/community) +[![Twitter Follow](https://img.shields.io/twitter/follow/goasksef.svg?style=social&label=Follow&maxAge=2592000?style=flat-square)](https://twitter.com/susiai_) This website was build by a set of enthusiastic developers as part of the Sustainable Education Foundation. -

- -Build - Master Branch - - - - -

- -###### Theme : Argon - -###### Theme Author : Creative Tim -
@@ -25,7 +18,31 @@ This repository contains source for Sustainable Education Foundation Website. [V ## Contribution -Want to contribute to this project? +#### Want to contribute to this project? + +**Send us a Pull Request** + +Read: [Development Best Practices at SEF](CONTRIBUTING.md) + +## Run Locally + +- Clone your forked repository + ``` + git clone https://github.com/USERNAME/sef-site + cd sef-site + ``` +- Install all the dependecies + ``` + npm install + ``` +- Start the server with `npm start` + +- Visit your app at http://localhost:9000 + + +
+ +Sustainable Education Foundation -#### Send us a Pull Request +Developed using theme Argon by Creative tim diff --git a/package.json b/package.json new file mode 100644 index 00000000..ee1732bf --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "sef-site", + "version": "3.0.0", + "description": "Official Website for Sustainable Education Foundation", + "main": "index.js", + "dependencies": {}, + "devDependencies": { + "http-server": "^0.12.1" + }, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "run": "http-server src/main/webapp --port 9000" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/sef-global/sef-site.git" + }, + "author": "Sustainable Education Foundation", + "license": "ISC", + "bugs": { + "url": "https://github.com/sef-global/sef-site/issues" + }, + "homepage": "https://sefglobal.org/" +}