-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit, project is running in Docker.
- Loading branch information
Burgy Benjamin
committed
Nov 10, 2023
0 parents
commit b0f5bde
Showing
32 changed files
with
974 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# This file excludes paths from the Docker build context. | ||
# | ||
# By default, Docker's build context includes all files (and folders) in the | ||
# current directory. Even if a file isn't copied into the container it is still sent to | ||
# the Docker daemon. | ||
# | ||
# There are multiple reasons to exclude files from the build context: | ||
# | ||
# 1. Prevent nested folders from being copied into the container (ex: exclude | ||
# /assets/node_modules when copying /assets) | ||
# 2. Reduce the size of the build context and improve build time (ex. /build, /deps, /doc) | ||
# 3. Avoid sending files containing sensitive information | ||
# | ||
# More information on using .dockerignore is available here: | ||
# https://docs.docker.com/engine/reference/builder/#dockerignore-file | ||
|
||
.dockerignore | ||
|
||
# Ignore git, but keep git HEAD and refs to access current commit hash if needed: | ||
# | ||
# $ cat .git/HEAD | awk '{print ".git/"$2}' | xargs cat | ||
# d0b8727759e1e0e7aa3d41707d12376e373d5ecc | ||
.git | ||
!.git/HEAD | ||
!.git/refs | ||
|
||
# Common development/test artifacts | ||
/cover/ | ||
/doc/ | ||
/test/ | ||
/tmp/ | ||
.elixir_ls | ||
|
||
# Mix artifacts | ||
/_build/ | ||
/deps/ | ||
*.ez | ||
|
||
# Generated on crash by the VM | ||
erl_crash.dump | ||
|
||
# Static artifacts - These should be fetched and built inside the Docker image | ||
/assets/node_modules/ | ||
/priv/static/assets/ | ||
/priv/static/cache_manifest.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[ | ||
line_length: 300, | ||
import_deps: [:phoenix], | ||
inputs: ["*.{ex,exs}", "{config,lib,test}/**/*.{ex,exs}"] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# The directory Mix will write compiled artifacts to. | ||
/_build/ | ||
|
||
# If you run "mix test --cover", coverage assets end up here. | ||
/cover/ | ||
|
||
# The directory Mix downloads your dependencies sources to. | ||
/deps/ | ||
|
||
# Where 3rd-party dependencies like ExDoc output generated docs. | ||
/doc/ | ||
|
||
# Ignore .fetch files in case you like to edit your project deps locally. | ||
/.fetch | ||
|
||
# If the VM crashes, it generates a dump, let's ignore it too. | ||
erl_crash.dump | ||
|
||
# Also ignore archive artifacts (built via "mix archive.build"). | ||
*.ez | ||
|
||
# Temporary files, for example, from tests. | ||
/tmp/ | ||
|
||
# Ignore package tarball (built via "mix hex.build"). | ||
kdrive_bridge-*.tar | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodejs 18.7.0 | ||
elixir 1.15.7-otp-26 | ||
erlang 26.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
# Find eligible builder and runner images on Docker Hub. We use Ubuntu/Debian | ||
# instead of Alpine to avoid DNS resolution issues in production. | ||
# | ||
# https://hub.docker.com/r/hexpm/elixir/tags?page=1&name=ubuntu | ||
# https://hub.docker.com/_/ubuntu?tab=tags | ||
# | ||
# This file is based on these images: | ||
# | ||
# - https://hub.docker.com/r/hexpm/elixir/tags - for the build image | ||
# - https://hub.docker.com/_/debian?tab=tags&page=1&name=bullseye-20231009-slim - for the release image | ||
# - https://pkgs.org/ - resource for finding needed packages | ||
# - Ex: hexpm/elixir:1.15.7-erlang-26.1.2-debian-bullseye-20231009-slim | ||
# | ||
ARG ELIXIR_VERSION=1.15.7 | ||
ARG OTP_VERSION=26.1.2 | ||
ARG DEBIAN_VERSION=bullseye-20231009-slim | ||
|
||
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}" | ||
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}" | ||
|
||
FROM ${BUILDER_IMAGE} as builder | ||
|
||
# install build dependencies | ||
RUN apt-get update -y && apt-get install -y build-essential git \ | ||
&& apt-get clean && rm -f /var/lib/apt/lists/*_* | ||
|
||
# prepare build dir | ||
WORKDIR /app | ||
|
||
# install hex + rebar | ||
RUN mix local.hex --force && \ | ||
mix local.rebar --force | ||
|
||
# set build ENV | ||
ENV MIX_ENV="prod" | ||
|
||
# install mix dependencies | ||
COPY mix.exs mix.lock ./ | ||
RUN mix deps.get --only $MIX_ENV | ||
RUN mkdir config | ||
|
||
# copy compile-time config files before we compile dependencies | ||
# to ensure any relevant config change will trigger the dependencies | ||
# to be re-compiled. | ||
COPY config/config.exs config/${MIX_ENV}.exs config/ | ||
RUN mix deps.compile | ||
|
||
COPY priv priv | ||
|
||
COPY lib lib | ||
|
||
# Compile the release | ||
RUN mix compile | ||
|
||
# Changes to config/runtime.exs don't require recompiling the code | ||
COPY config/runtime.exs config/ | ||
|
||
COPY rel rel | ||
RUN mix release | ||
|
||
# start a new build stage so that the final image will only contain | ||
# the compiled release and other runtime necessities | ||
FROM ${RUNNER_IMAGE} | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install -y libstdc++6 openssl libncurses5 locales ca-certificates \ | ||
&& apt-get clean && rm -f /var/lib/apt/lists/*_* | ||
|
||
# Set the locale | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen | ||
|
||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US:en | ||
ENV LC_ALL en_US.UTF-8 | ||
|
||
WORKDIR "/app" | ||
RUN chown nobody /app | ||
|
||
# set runner ENV | ||
ENV MIX_ENV="prod" | ||
|
||
# Only copy the final release from the build stage | ||
COPY --from=builder --chown=nobody:root /app/_build/${MIX_ENV}/rel/kdrive_bridge ./ | ||
|
||
USER nobody | ||
|
||
# If using an environment that doesn't automatically reap zombie processes, it is | ||
# advised to add an init process such as tini via `apt-get install` | ||
# above and adding an entrypoint. See https://github.com/krallin/tini for details | ||
# ENTRYPOINT ["/tini", "--"] | ||
|
||
CMD ["/app/bin/server"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# KdriveBridge | ||
|
||
The goal of this project is to provide access to the content of your files saved in kDrive. This application doesn't offer any security layers or authentication. I suggest using a [proxy](https://docs.linuxserver.io/general/swag/) for TLS termination and authentication in front of the project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# This file is responsible for configuring your application | ||
# and its dependencies with the aid of the Config module. | ||
# | ||
# This configuration file is loaded before any dependency and | ||
# is restricted to this project. | ||
|
||
# General application configuration | ||
import Config | ||
|
||
config :kdrive_bridge, | ||
generators: [timestamp_type: :utc_datetime], | ||
kdrive_id: "", | ||
kdrive_api_token: "" | ||
|
||
# Configures the endpoint | ||
config :kdrive_bridge, KdriveBridgeWeb.Endpoint, | ||
url: [host: "localhost"], | ||
adapter: Phoenix.Endpoint.Cowboy2Adapter, | ||
render_errors: [ | ||
formats: [json: KdriveBridgeWeb.ErrorJSON], | ||
layout: false | ||
], | ||
pubsub_server: KdriveBridge.PubSub, | ||
live_view: [signing_salt: "7nfCI6sX"] | ||
|
||
# Configures Elixir's Logger | ||
config :logger, :console, | ||
format: "$time $metadata[$level] $message\n", | ||
metadata: [:request_id] | ||
|
||
# Use Jason for JSON parsing in Phoenix | ||
config :phoenix, :json_library, Jason | ||
|
||
# Tesla | ||
config :tesla, adapter: Tesla.Adapter.Hackney | ||
|
||
# Import environment specific config. This must remain at the bottom | ||
# of this file so it overrides the configuration defined above. | ||
import_config "#{config_env()}.exs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import Config | ||
|
||
# For development, we disable any cache and enable | ||
# debugging and code reloading. | ||
# | ||
# The watchers configuration can be used to run external | ||
# watchers to your application. For example, we can use it | ||
# to bundle .js and .css sources. | ||
config :kdrive_bridge, KdriveBridgeWeb.Endpoint, | ||
# Binding to loopback ipv4 address prevents access from other machines. | ||
# Change to `ip: {0, 0, 0, 0}` to allow access from other machines. | ||
http: [ip: {0, 0, 0, 0}, port: 4000], | ||
check_origin: false, | ||
code_reloader: true, | ||
debug_errors: true, | ||
secret_key_base: "eRY53a7yJtFRrDYN/W40CBckt60wZusAt85iaDXcFrKxz0LKSm5ijj6H8qs512JG", | ||
watchers: [] | ||
|
||
# ## SSL Support | ||
# | ||
# In order to use HTTPS in development, a self-signed | ||
# certificate can be generated by running the following | ||
# Mix task: | ||
# | ||
# mix phx.gen.cert | ||
# | ||
# Run `mix help phx.gen.cert` for more information. | ||
# | ||
# The `http:` config above can be replaced with: | ||
# | ||
# https: [ | ||
# port: 4001, | ||
# cipher_suite: :strong, | ||
# keyfile: "priv/cert/selfsigned_key.pem", | ||
# certfile: "priv/cert/selfsigned.pem" | ||
# ], | ||
# | ||
# If desired, both `http:` and `https:` keys can be | ||
# configured to run both http and https servers on | ||
# different ports. | ||
|
||
# Enable dev routes for dashboard and mailbox | ||
config :kdrive_bridge, dev_routes: true | ||
|
||
# Do not include metadata nor timestamps in development logs | ||
config :logger, :console, format: "[$level] $message\n" | ||
|
||
# Set a higher stacktrace during development. Avoid configuring such | ||
# in production as building large stacktraces may be expensive. | ||
config :phoenix, :stacktrace_depth, 20 | ||
|
||
# Initialize plugs at runtime for faster development compilation | ||
config :phoenix, :plug_init_mode, :runtime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import Config | ||
|
||
# Do not print debug messages in production | ||
config :logger, level: :info | ||
|
||
# Runtime production configuration, including reading | ||
# of environment variables, is done on config/runtime.exs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import Config | ||
|
||
# config/runtime.exs is executed for all environments, including | ||
# during releases. It is executed after compilation and before the | ||
# system starts, so it is typically used to load production configuration | ||
# and secrets from environment variables or elsewhere. Do not define | ||
# any compile-time configuration in here, as it won't be applied. | ||
# The block below contains prod specific runtime configuration. | ||
|
||
# ## Using releases | ||
# | ||
# If you use `mix release`, you need to explicitly enable the server | ||
# by passing the PHX_SERVER=true when you start it: | ||
# | ||
# PHX_SERVER=true bin/kdrive_bridge start | ||
# | ||
# Alternatively, you can use `mix phx.gen.release` to generate a `bin/server` | ||
# script that automatically sets the env var above. | ||
if System.get_env("PHX_SERVER") do | ||
config :kdrive_bridge, KdriveBridgeWeb.Endpoint, server: true | ||
end | ||
|
||
if config_env() == :prod do | ||
# The secret key base is used to sign/encrypt cookies and other secrets. | ||
# A default value is used in config/dev.exs and config/test.exs but you | ||
# want to use a different value for prod and you most likely don't want | ||
# to check this value into version control, so we use an environment | ||
# variable instead. | ||
secret_key_base = | ||
System.get_env("SECRET_KEY_BASE") || | ||
raise """ | ||
environment variable SECRET_KEY_BASE is missing. | ||
You can generate one by calling: mix phx.gen.secret | ||
""" | ||
|
||
host = System.get_env("PHX_HOST") || "example.com" | ||
port = String.to_integer(System.get_env("PORT") || "4000") | ||
|
||
config :kdrive_bridge, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY") | ||
|
||
config :kdrive_bridge, KdriveBridgeWeb.Endpoint, | ||
url: [host: host, port: 443, scheme: "https"], | ||
http: [ | ||
# Enable IPv6 and bind on all interfaces. | ||
# Set it to {0, 0, 0, 0, 0, 0, 0, 1} for local network only access. | ||
# See the documentation on https://hexdocs.pm/plug_cowboy/Plug.Cowboy.html | ||
# for details about using IPv6 vs IPv4 and loopback vs public addresses. | ||
ip: {0, 0, 0, 0, 0, 0, 0, 0}, | ||
port: port | ||
], | ||
secret_key_base: secret_key_base | ||
|
||
# ## SSL Support | ||
# | ||
# To get SSL working, you will need to add the `https` key | ||
# to your endpoint configuration: | ||
# | ||
# config :kdrive_bridge, KdriveBridgeWeb.Endpoint, | ||
# https: [ | ||
# ..., | ||
# port: 443, | ||
# cipher_suite: :strong, | ||
# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"), | ||
# certfile: System.get_env("SOME_APP_SSL_CERT_PATH") | ||
# ] | ||
# | ||
# The `cipher_suite` is set to `:strong` to support only the | ||
# latest and more secure SSL ciphers. This means old browsers | ||
# and clients may not be supported. You can set it to | ||
# `:compatible` for wider support. | ||
# | ||
# `:keyfile` and `:certfile` expect an absolute path to the key | ||
# and cert in disk or a relative path inside priv, for example | ||
# "priv/ssl/server.key". For all supported SSL configuration | ||
# options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1 | ||
# | ||
# We also recommend setting `force_ssl` in your endpoint, ensuring | ||
# no data is ever sent via http, always redirecting to https: | ||
# | ||
# config :kdrive_bridge, KdriveBridgeWeb.Endpoint, | ||
# force_ssl: [hsts: true] | ||
# | ||
# Check `Plug.SSL` for all available options in `force_ssl`. | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import Config | ||
|
||
# We don't run a server during test. If one is required, | ||
# you can enable the server option below. | ||
config :kdrive_bridge, KdriveBridgeWeb.Endpoint, | ||
http: [ip: {127, 0, 0, 1}, port: 4002], | ||
secret_key_base: "BQY9JpU3sNCk28WVxTGzJMma6M4DIiMD+4L/OskOMPSgOXp08t6OBveo2ccdxYxr", | ||
server: false | ||
|
||
# Print only warnings and errors during test | ||
config :logger, level: :warning | ||
|
||
# Initialize plugs at runtime for faster test compilation | ||
config :phoenix, :plug_init_mode, :runtime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: '3' | ||
services: | ||
kdrive-bridge: | ||
build: . | ||
image: minidfx/kdrive-bridge:v0.1.0 | ||
environment: | ||
- SECRET_KEY_BASE=<secret> | ||
- PHX_HOST=<host> | ||
- KDRIVE_ID=<id> | ||
- KDRIVE_API_TOKEN=<token> | ||
ports: | ||
- 4000:4000 |
Oops, something went wrong.