commit 698555d6a401c99051bd5456861c3e5cd8c56530 Author: Josh Black Date: Thu Aug 31 21:58:32 2017 -0600 seed diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2725c8d --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# See http://help.github.com/ignore-files/ for more about ignoring files. + +# dependencies +/node_modules +/bower_components + +# IDEs and editors +/.idea +.project +.classpath +*.launch +.settings/ + + +#System Files +.DS_Store +Thumbs.db diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..3410641 Binary files /dev/null and b/logo.png differ diff --git a/package.json b/package.json new file mode 100644 index 0000000..a2ae973 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "typescript-node-express-realworld-example-app", + "version": "0.0.0", + "description": "> ### [YOUR_FRAMEWORK] codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API.", + "main": "app.ts", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "dev": "nodemon --exec 'ts-node' ./app.ts" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/gothinkster/realworld-starter-kit.git" + }, + "author": "Josh Black", + "license": "ISC", + "bugs": { + "url": "https://github.com/gothinkster/realworld-starter-kit/issues" + }, + "homepage": "https://github.com/gothinkster/realworld-starter-kit#readme" +} diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..5ae38a3 --- /dev/null +++ b/readme.md @@ -0,0 +1,23 @@ +# ![RealWorld Example App](logo.png) + +> ### [YOUR_FRAMEWORK] codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the [RealWorld](https://github.com/gothinkster/realworld) spec and API. + + +### [Demo](https://github.com/gothinkster/realworld)    [RealWorld](https://github.com/gothinkster/realworld) + + +This codebase was created to demonstrate a fully fledged fullstack application built with **[YOUR_FRAMEWORK]** including CRUD operations, authentication, routing, pagination, and more. + +We've gone to great lengths to adhere to the **[YOUR_FRAMEWORK]** community styleguides & best practices. + +For more information on how to this works with other frontends/backends, head over to the [RealWorld](https://github.com/gothinkster/realworld) repo. + + +# How it works + +> Describe the general architecture of your app here + +# Getting started + +> npm install, npm start, etc. +