Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
arwassa committed Aug 11, 2020
0 parents commit 825b09f
Show file tree
Hide file tree
Showing 15 changed files with 3,143 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
kind: pipeline
type: docker
name: default

steps:
- name: publish
image: plugins/docker
when:
event:
- tag
branch:
- master

settings:
repo: foo/bar
tags:
- latest
- ${DRONE_TAG}
2 changes: 2 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
BIND_ADDRESS='localhost'
BIND_PORT=8889
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode/
logs/
node_modules/
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact
3 changes: 3 additions & 0 deletions .prettierrc.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
semi = false
trailingComma = "all"
bracketSpacing = false
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:14.3-alpine


COPY ./src .
COPY ./package.json .
COPY ./package-lock.json .

RUN npm ci --frozen-lockfile

ENTRYPOINT ["npm", "start"]
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
BZTTServer
7 changes: 7 additions & 0 deletions ava.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
const configuration = {
cache: true,
require: [],
files: ["tests/**/*"],
}

export default configuration
Loading

0 comments on commit 825b09f

Please sign in to comment.