seed
This commit is contained in:
commit
698555d6a4
|
|
@ -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
|
||||
|
|
@ -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"
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
# 
|
||||
|
||||
> ### [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.
|
||||
|
||||
Loading…
Reference in New Issue