Compare commits
3 Commits
v3.5.3
...
feature/do
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a4cc40c75f | ||
|
|
03bb6b7019 | ||
|
|
78687b9836 |
31
.env
31
.env
@@ -1,32 +1,29 @@
|
|||||||
POSTGRES_USER=unicorn_user
|
DATABASE_URL=postgresql://unicorn_user:magical_password@db:5432/calendso
|
||||||
POSTGRES_PASSWORD=magical_password
|
BASE_URL=http://localhost:3000
|
||||||
POSTGRES_DB=calendso
|
NEXTAUTH_URL=http://localhost:3000
|
||||||
DATABASE_HOST=db:5432
|
|
||||||
DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DATABASE_HOST}/${POSTGRES_DB}"
|
|
||||||
GOOGLE_API_CREDENTIALS='secret'
|
|
||||||
BASE_URL='http://localhost:3000'
|
|
||||||
NEXTAUTH_URL='http://localhost:3000'
|
|
||||||
|
|
||||||
# Remove this var if you don't want Calendso to collect anonymous usage
|
# Remove this var if you don't want Calendso to collect anonymous usage
|
||||||
NEXT_PUBLIC_TELEMETRY_KEY=js.2pvs2bbpqq1zxna97wcml.oi2jzirnbj1ev4tc57c5r
|
NEXT_PUBLIC_TELEMETRY_KEY=js.2pvs2bbpqq1zxna97wcml.oi2jzirnbj1ev4tc57c5r
|
||||||
|
|
||||||
# Used for the Office 365 / Outlook.com Calendar integration
|
# Used for the Office 365 / Outlook.com Calendar integration
|
||||||
MS_GRAPH_CLIENT_ID=
|
# MS_GRAPH_CLIENT_ID=
|
||||||
MS_GRAPH_CLIENT_SECRET=
|
# MS_GRAPH_CLIENT_SECRET=
|
||||||
|
|
||||||
# Used for the Zoom integration
|
# Used for the Zoom integration
|
||||||
ZOOM_CLIENT_ID=
|
# ZOOM_CLIENT_ID=
|
||||||
ZOOM_CLIENT_SECRET=
|
# ZOOM_CLIENT_SECRET=
|
||||||
|
|
||||||
# E-mail settings
|
# E-mail settings
|
||||||
# Configures the global From: header whilst sending emails.
|
# Configures the global From: header whilst sending emails.
|
||||||
EMAIL_FROM='notifications@example.com'
|
EMAIL_FROM=notifications@example.com
|
||||||
|
|
||||||
# Configure SMTP settings (@see https://nodemailer.com/smtp/).
|
# Configure SMTP settings (@see https://nodemailer.com/smtp/).
|
||||||
EMAIL_SERVER_HOST='smtp.example.com'
|
EMAIL_SERVER_HOST=smtp.example.com
|
||||||
EMAIL_SERVER_PORT=587
|
EMAIL_SERVER_PORT=587
|
||||||
EMAIL_SERVER_USER='email_user'
|
EMAIL_SERVER_USER=email_user
|
||||||
EMAIL_SERVER_PASSWORD='email_password'
|
EMAIL_SERVER_PASSWORD=email_password
|
||||||
|
|
||||||
# Encryption key that will be used to encrypt CalDAV credentials, choose a random string, for example with `dd if=/dev/urandom bs=1K count=1 | md5sum`
|
# Encryption key that will be used to encrypt CalDAV credentials, choose a random string, for example with `dd if=/dev/urandom bs=1K count=1 | md5sum`
|
||||||
CALENDSO_ENCRYPTION_KEY=''
|
# CALENDSO_ENCRYPTION_KEY=
|
||||||
|
|
||||||
|
JWT_SECRET=ChangeMe
|
||||||
|
|||||||
37
Dockerfile
37
Dockerfile
@@ -1,28 +1,37 @@
|
|||||||
FROM node:14-alpine as deps
|
FROM node:14-alpine AS base
|
||||||
|
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
||||||
RUN apk add --no-cache libc6-compat
|
RUN apk add --no-cache libc6-compat
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY calendso/package.json calendso/yarn.lock ./
|
COPY calendso .
|
||||||
COPY calendso/prisma prisma
|
|
||||||
RUN yarn install --frozen-lockfile
|
RUN yarn install --frozen-lockfile
|
||||||
|
|
||||||
FROM node:14-alpine as builder
|
FROM node:14-alpine AS builder
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY calendso .
|
COPY --from=base /app/ ./
|
||||||
COPY --from=deps /app/node_modules ./node_modules
|
|
||||||
RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
|
RUN yarn build && yarn install --production --ignore-scripts --prefer-offline
|
||||||
|
|
||||||
FROM node:14-alpine as runner
|
FROM node:14-alpine AS runner
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
ENV NODE_ENV production
|
ENV NODE_ENV production
|
||||||
|
|
||||||
COPY --from=builder /app/next.config.js ./
|
RUN addgroup -g 1001 -S nodejs
|
||||||
COPY --from=builder /app/next-i18next.config.js ./
|
RUN adduser -S nextjs -u 1001
|
||||||
|
|
||||||
|
COPY --from=builder /app/next*.config.js ./
|
||||||
COPY --from=builder /app/public ./public
|
COPY --from=builder /app/public ./public
|
||||||
COPY --from=builder /app/.next ./.next
|
COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
|
||||||
COPY --from=builder /app/node_modules ./node_modules
|
COPY --from=builder /app/node_modules ./node_modules
|
||||||
COPY --from=builder /app/package.json ./package.json
|
|
||||||
COPY --from=builder /app/prisma ./prisma
|
COPY --from=builder /app/prisma ./prisma
|
||||||
COPY scripts scripts
|
COPY --from=builder /app/package.json ./package.json
|
||||||
|
|
||||||
|
USER nextjs
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
CMD ["/app/scripts/start.sh"]
|
|
||||||
|
# Next.js collects completely anonymous telemetry data about general usage.
|
||||||
|
# Learn more here: https://nextjs.org/telemetry
|
||||||
|
# Uncomment the following line in case you want to disable telemetry.
|
||||||
|
# ENV NEXT_TELEMETRY_DISABLED 1
|
||||||
|
|
||||||
|
CMD ["yarn", "start"]
|
||||||
|
|||||||
@@ -6,16 +6,19 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- database-data:/var/lib/postgresql/data/
|
- database-data:/var/lib/postgresql/data/
|
||||||
env_file: .env
|
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
calendso:
|
calendso:
|
||||||
build: .
|
build:
|
||||||
|
target: "base"
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 3000:3000
|
- 3000:3000
|
||||||
- 5555:5555
|
- 5555:5555
|
||||||
env_file: .env
|
env_file: .env
|
||||||
|
command: sh -c "npx prisma migrate reset --force && yarn db-seed && yarn dev"
|
||||||
|
environment:
|
||||||
|
- NODE_ENV=development
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
set -x
|
|
||||||
|
|
||||||
/app/scripts/wait-for-it.sh ${DATABASE_HOST} -- echo "db is up"
|
|
||||||
npx prisma migrate deploy
|
|
||||||
yarn start
|
|
||||||
@@ -1,184 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
# The MIT License (MIT)
|
|
||||||
#
|
|
||||||
# Copyright (c) 2017 Eficode Oy
|
|
||||||
#
|
|
||||||
# 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.
|
|
||||||
|
|
||||||
set -- "$@" -- "$TIMEOUT" "$QUIET" "$PROTOCOL" "$HOST" "$PORT" "$result"
|
|
||||||
TIMEOUT=15
|
|
||||||
QUIET=0
|
|
||||||
# The protocol to make the request with, either "tcp" or "http"
|
|
||||||
PROTOCOL="tcp"
|
|
||||||
|
|
||||||
echoerr() {
|
|
||||||
if [ "$QUIET" -ne 1 ]; then printf "%s\n" "$*" 1>&2; fi
|
|
||||||
}
|
|
||||||
|
|
||||||
usage() {
|
|
||||||
exitcode="$1"
|
|
||||||
cat << USAGE >&2
|
|
||||||
Usage:
|
|
||||||
$0 host:port|url [-t timeout] [-- command args]
|
|
||||||
-q | --quiet Do not output any status messages
|
|
||||||
-t TIMEOUT | --timeout=timeout Timeout in seconds, zero for no timeout
|
|
||||||
-- COMMAND ARGS Execute command with args after the test finishes
|
|
||||||
USAGE
|
|
||||||
exit "$exitcode"
|
|
||||||
}
|
|
||||||
|
|
||||||
wait_for() {
|
|
||||||
case "$PROTOCOL" in
|
|
||||||
tcp)
|
|
||||||
if ! command -v nc >/dev/null; then
|
|
||||||
echoerr 'nc command is missing!'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
wget)
|
|
||||||
if ! command -v wget >/dev/null; then
|
|
||||||
echoerr 'nc command is missing!'
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
while :; do
|
|
||||||
case "$PROTOCOL" in
|
|
||||||
tcp)
|
|
||||||
nc -w 1 -z "$HOST" "$PORT" > /dev/null 2>&1
|
|
||||||
;;
|
|
||||||
http)
|
|
||||||
wget --timeout=1 -q "$HOST" -O /dev/null > /dev/null 2>&1
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echoerr "Unknown protocol '$PROTOCOL'"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
result=$?
|
|
||||||
|
|
||||||
if [ $result -eq 0 ] ; then
|
|
||||||
if [ $# -gt 7 ] ; then
|
|
||||||
for result in $(seq $(($# - 7))); do
|
|
||||||
result=$1
|
|
||||||
shift
|
|
||||||
set -- "$@" "$result"
|
|
||||||
done
|
|
||||||
|
|
||||||
TIMEOUT=$2 QUIET=$3 PROTOCOL=$4 HOST=$5 PORT=$6 result=$7
|
|
||||||
shift 7
|
|
||||||
exec "$@"
|
|
||||||
fi
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$TIMEOUT" -le 0 ]; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
TIMEOUT=$((TIMEOUT - 1))
|
|
||||||
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
echo "Operation timed out" >&2
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
while :; do
|
|
||||||
case "$1" in
|
|
||||||
http://*|https://*)
|
|
||||||
HOST="$1"
|
|
||||||
PROTOCOL="http"
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
*:* )
|
|
||||||
HOST=$(printf "%s\n" "$1"| cut -d : -f 1)
|
|
||||||
PORT=$(printf "%s\n" "$1"| cut -d : -f 2)
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
-q | --quiet)
|
|
||||||
QUIET=1
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
-q-*)
|
|
||||||
QUIET=0
|
|
||||||
echoerr "Unknown option: $1"
|
|
||||||
usage 1
|
|
||||||
;;
|
|
||||||
-q*)
|
|
||||||
QUIET=1
|
|
||||||
result=$1
|
|
||||||
shift 1
|
|
||||||
set -- -"${result#-q}" "$@"
|
|
||||||
;;
|
|
||||||
-t | --timeout)
|
|
||||||
TIMEOUT="$2"
|
|
||||||
shift 2
|
|
||||||
;;
|
|
||||||
-t*)
|
|
||||||
TIMEOUT="${1#-t}"
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
--timeout=*)
|
|
||||||
TIMEOUT="${1#*=}"
|
|
||||||
shift 1
|
|
||||||
;;
|
|
||||||
--)
|
|
||||||
shift
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
--help)
|
|
||||||
usage 0
|
|
||||||
;;
|
|
||||||
-*)
|
|
||||||
QUIET=0
|
|
||||||
echoerr "Unknown option: $1"
|
|
||||||
usage 1
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
QUIET=0
|
|
||||||
echoerr "Unknown argument: $1"
|
|
||||||
usage 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
if ! [ "$TIMEOUT" -ge 0 ] 2>/dev/null; then
|
|
||||||
echoerr "Error: invalid timeout '$TIMEOUT'"
|
|
||||||
usage 3
|
|
||||||
fi
|
|
||||||
|
|
||||||
case "$PROTOCOL" in
|
|
||||||
tcp)
|
|
||||||
if [ "$HOST" = "" ] || [ "$PORT" = "" ]; then
|
|
||||||
echoerr "Error: you need to provide a host and port to test."
|
|
||||||
usage 2
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
http)
|
|
||||||
if [ "$HOST" = "" ]; then
|
|
||||||
echoerr "Error: you need to provide a host to test."
|
|
||||||
usage 2
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
wait_for "$@"
|
|
||||||
Reference in New Issue
Block a user