Skip to content

Commit 4899a2e

Browse files
authored
Merge pull request #5 from nfacha/2.0
Version 2.0.0
2 parents 3bf8971 + e0a8012 commit 4899a2e

68 files changed

Lines changed: 7404 additions & 843 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ name: Docker
66
# documentation.
77

88
on:
9-
schedule:
10-
- cron: '16 8 * * *'
119
push:
12-
branches: [ "master", "2.0" ]
10+
branches: [ "master", "dev" ]
1311
# Publish semver tags as releases.
1412
tags: [ 'v*.*.*' ]
1513
pull_request:
16-
branches: [ "master" ]
14+
branches: [ "master", "dev" ]
1715

1816
env:
1917
# Use docker.io for Docker Hub if empty

.gitignore

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1-
21
.idea/
3-
42
node_modules/
5-
63
PlaneAlert/build/
7-
8-
PlaneAlert/chart/values-facha.yaml
9-
10-
PlaneAlert/chart/templates/planealert/fr24-track-source.configmap.yml
4+
chart/values-facha.yaml
5+
chart/templates/planealert/fr24-track-source.configmap.yml
6+
node_modules
7+
build/*.js
8+
build/*/*.js
9+
build/*/*/*.js
10+
data/*.csv
11+
data/*.json
12+
build/
13+
config/main.yaml
14+
config/aircraft/*.yaml
15+
config/aircraft/*.yaml.disabled
16+
config/airlines/*.yaml
17+
config/airlines/*.yaml.disabled
18+
config/types/*.yaml
19+
config/types/*.yaml.disabled
20+
config/squawk/*.yaml
21+
config/squawk/*.yaml.disabled
22+
config-server/*

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
# Release V2.0.0 (2022-08-29)
4+
5+
- Initial 2.0 release

Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM node:17-buster
2+
RUN apt-get update \
3+
&& apt-get install -y wget gnupg \
4+
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
5+
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
6+
&& apt-get update \
7+
&& apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 \
8+
--no-install-recommends \
9+
&& rm -rf /var/lib/apt/lists/*
10+
RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser && mkdir -p /home/pptruser/Downloads && chown -R pptruser:pptruser /home/pptruser
11+
COPY --chown=pptruser:pptruser . /home/pptruser/app
12+
WORKDIR /home/pptruser/app
13+
RUN mkdir -p /home/pptruser/app/config
14+
RUN chown -R pptruser:pptruser /home/pptruser/app/config
15+
USER pptruser
16+
RUN npm i
17+
#RUN npm run build
18+
CMD npm run dev

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

PlaneAlert/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

PlaneAlert/Dockerfile

Lines changed: 0 additions & 6 deletions
This file was deleted.

PlaneAlert/config.json.sample

Lines changed: 0 additions & 19 deletions
This file was deleted.

PlaneAlert/docker-compose.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)