Skip to content

Commit

Permalink
changed file to LF
Browse files Browse the repository at this point in the history
  • Loading branch information
heinrich10 committed Jan 16, 2018
1 parent 43b0dfa commit 8250ff1
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 40 deletions.
4 changes: 2 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
node_modules
npm-debug.log
node_modules
npm-debug.log
26 changes: 13 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM node:8.9-alpine

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY package.json /usr/src/app
COPY package-lock.json /usr/src/app
RUN npm install

COPY . /usr/src/app

EXPOSE 4000
CMD ["npm", "start"]
FROM node:8.9-alpine

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY package.json /usr/src/app
COPY package-lock.json /usr/src/app
RUN npm install

COPY . /usr/src/app

EXPOSE 4000
CMD ["npm", "start"]
42 changes: 21 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# AMK

Amk is a no frills opinionated express api server seed.
it lets you skip all the tediuos process of thinking how to deal with folder structures, just donwload and then use

## How to use:
1. clone this repository
2. copy this to a different folder
3. write your code

## Elements
- controller
- model
- lib
- middleware
- service
- validator
- routes

## Tests
- test/index.js
# AMK

Amk is a no frills opinionated express api server seed.
it lets you skip all the tediuos process of thinking how to deal with folder structures, just donwload and then use

## How to use:
1. clone this repository
2. copy this to a different folder
3. write your code

## Elements
- controller
- model
- lib
- middleware
- service
- validator
- routes

## Tests
- test/index.js
8 changes: 4 additions & 4 deletions test/mocha.opts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
test/**/*.js
--reporter spec
--reporter-options output=mocha.json
--check-leaks
test/**/*.js
--reporter spec
--reporter-options output=mocha.json
--check-leaks

0 comments on commit 8250ff1

Please sign in to comment.