Compare commits

..
3 Commits
Author SHA1 Message Date
tanshu a4db3b24f0 Version Bump v10.3.2 2022-06-21 08:54:51 +05:30
tanshu 9f4ec3697c Fix: Frank service changed to beacon from knox 2022-06-21 08:54:45 +05:30
tanshu 9fe84800a7 Chore: Dockerfile also updated 2022-06-21 08:53:37 +05:30
8 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -1 +1 @@
__version__ = "10.3.1"
__version__ = "10.3.2"
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "barker"
version = "10.3.1"
version = "10.3.2"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "bookie",
"version": "10.3.1",
"version": "10.3.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
+1 -1
View File
@@ -1,5 +1,5 @@
export const environment = {
production: true,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '10.3.1',
version: '10.3.2',
};
+1 -1
View File
@@ -5,7 +5,7 @@
export const environment = {
production: false,
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '10.3.1',
version: '10.3.2',
};
/*
+1 -1
View File
@@ -13,7 +13,7 @@ RUN mv /node_modules /app/bookie/ \
&& /app/bookie/node_modules/.bin/ng build
FROM python:3.9
FROM python:3.10
LABEL maintainer="Amritanshu <docker@tanshu.com>"
COPY pyproject.toml /app/pyproject.toml
+4 -3
View File
@@ -1,8 +1,9 @@
[Unit]
Description=Frank container service
After=docker.service knox-redis-tunnel.service
Wants=network-online.target docker.socket knox-redis-tunnel.service
Requires=docker.socket knox-redis-tunnel.service
After=docker.service beacon-redis-tunnel.service
Wants=network-online.target docker.socket beacon-redis-tunnel.service
Requires=docker.socket beacon-redis-tunnel.service
PartOf=beacon-redis-tunnel.service
[Service]
Restart=always
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "frank"
version = "10.3.1"
version = "10.3.2"
description = "Point of Sale for a restaurant"
authors = ["tanshu <git@tanshu.com>"]