diff --git a/.env b/.env deleted file mode 100644 index cff2fb72e7..0000000000 --- a/.env +++ /dev/null @@ -1 +0,0 @@ -MONGODB='mongodb://localhost:27017/test' \ No newline at end of file diff --git a/.gitignore b/.gitignore index 9eb78ce978..d19f89c7fc 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,7 @@ lib-cov *.gz *.swp -.env +*.env pids logs results diff --git a/README.md b/README.md index 5d4caf4709..8f3ffc3dd3 100644 --- a/README.md +++ b/README.md @@ -1,90 +1,7 @@ - -Hackathon Starter [](https://david-dm.org/sahat/hackathon-starter) [](https://travis-ci.org/sahat/hackathon-starter) [](https://github.com/igrigorik/ga-beacon) + +Free Code Camp! ======================= -:octocat: **Live Demo**: http://hackathonstarter.herokuapp.com - -Jump to [What's new in 2.4.0?](#changelog) - -A boilerplate for **Node.js** web applications. - -If you have attended any hackathons in the past, then you know how much time it takes to -get a project started: decide on what to build, pick a programming language, pick a web framework, -pick a CSS framework. A while later, you might have an initial project xup on GitHub and only then -can other team members start contributing. Or how about doing something as simple as *Sign in with Facebook* -authentication? You can spend hours on it if you are not familiar with how OAuth 2.0 works. - -When I started this project, my primary focus was on **simplicity** and **ease of use**. -I also tried to make it as **generic** and **reusable** as possible to cover most use cases of hackathon web apps, -without being too specific. In the worst case you can use this as a learning guide for your projects, -if for example you are only interested in **Sign in with Google** authentication and nothing else. - -Chances are you do not need all authentication methods or API examples. As of **Hackathon Starter 2.1** -it is possible to selectively check which authentication methods you need by running `node setup.js`. - -