Skip to content

Commit

Permalink
docs: Add MIT license, expand readme
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Jun 22, 2018
1 parent f4b2482 commit 5919ce6
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CONTRIBUTING.md
@@ -1,3 +1,13 @@
# Contribution Guidelines

## Note: code contributions discouraged in pre-alpha phase

Due to the very early phase of this project, significant changes to code and architecture are still taking place.

Therefore I do not recommend investing time in making code changes until things are more stable.

Contributions in terms of suggestions or other relevant feedback are welcome.

### Commit message format
Ref: [Karma commit message conventions](http://karma-runner.github.io/0.10/dev/git-commit-msg.html)
```
Expand All @@ -12,4 +22,4 @@ type(scope): Message in present tense
* **test** (adding missing tests, refactoring tests; no production code change)
* **chore** (updating build tasks etc; no production code change)

`scope` indicates the module affected (server, admin-ui, docs etc.)
`scope` indicates the module affected (server, admin-ui, docs etc.)
9 changes: 9 additions & 0 deletions LICENSE
@@ -0,0 +1,9 @@
The MIT License

Copyright (c) 2018 Michael Bromley

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 changes: 29 additions & 1 deletion README.md
@@ -1,5 +1,33 @@
# Vendure

![logo](admin-ui/src/assets/cube-logo-300px.png)

A headless ecommerce framework built on TypeScript, Node & GraphQL.

Currently under initial development. Nothing much to see for now.
### Status

Currently in pre-alpha, i.e. it is not yet useable.

## Structure

Vendure is a headless framework, which means that it is just an API serving JSON via a GraphQL endpoint. The code for
the server is located in the `server` directory.

We will ship with an administration UI which is a stand-alone web application which can be used to perform tasks such
as inventory, order and customer management. The code for this is located in the `admin-ui` directory.

## Development

### Server

* `cd server && yarn`
* `yarn start:dev`

### Admin UI

* `cd admin-ui && yarn`
* `yarn start`

## License

MIT
1 change: 0 additions & 1 deletion server/LICENSE.md

This file was deleted.

2 changes: 1 addition & 1 deletion server/package.json
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"description": "A modern, headless ecommerce framework",
"private": true,
"license": "SEE LICENSE IN LICENSE.md",
"license": "MIT",
"scripts": {
"format": "prettier --write \"modules/**/*.ts\"",
"populate": "ts-node -r tsconfig-paths/register mock-data/populate.ts",
Expand Down

0 comments on commit 5919ce6

Please sign in to comment.