Skip to content

Commit d528780

Browse files
committed
Get rid of umbrella application!
1 parent b875b9a commit d528780

File tree

199 files changed

+167
-280
lines changed

Some content is hidden

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

199 files changed

+167
-280
lines changed

.formatter.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
inputs: ["mix.exs", "config/*.exs"],
3-
subdirectories: ["apps/*"]
2+
import_deps: [:phoenix],
3+
inputs: ["*.{ex,exs}", "{config,lib,test}/**/*.{ex,exs}"]
44
]

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,19 @@ erl_crash.dump
1919
# Also ignore archive artifacts (built via "mix archive.build").
2020
*.ez
2121

22+
# Ignore package tarball (built via "mix hex.build").
23+
components_guide-*.tar
24+
25+
/assets/node_modules/
26+
27+
# Since we are building assets from web/static,
28+
# we ignore priv/static. You may want to comment
29+
# this depending on your deployment strategy.
30+
/priv/static/
31+
32+
# If NPM crashes, it generates a log, let's ignore it too.
33+
npm-debug.log
34+
2235
.elixir_ls/
2336

2437
.DS_Store

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ install_mix:
66
mix deps.get
77

88
install_assets:
9-
cd apps/components_guide_web/assets/ && npm ci
9+
cd assets/ && npm ci
1010

1111
test_watch:
1212
watchexec -e ex,exs mix test
@@ -15,7 +15,7 @@ dev:
1515
iex -S mix phx.server
1616

1717
build:
18-
cd apps/components_guide_web/ && mix template_assets && mix phx.digest
18+
mix template_assets && mix phx.digest
1919

2020
clean:
2121
rm -rf ./_build

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
[![CC BY-SA 4.0][cc-by-sa-shield]][cc-by-sa]
44

5+
To start your Phoenix server:
6+
7+
* Install dependencies with `mix deps.get`
8+
* Install Node.js dependencies with `cd assets && npm install`
9+
* Start Phoenix endpoint with `mix phx.server`
10+
11+
Now you can visit [`localhost:4333`](http://localhost:4333) from your browser.
12+
13+
----
14+
515
This work is licensed under a
616
[Creative Commons Attribution-ShareAlike 4.0 International License][cc-by-sa].
717

apps/components_guide/.formatter.exs

-3
This file was deleted.

apps/components_guide/.gitignore

-23
This file was deleted.

apps/components_guide/README.md

-3
This file was deleted.

apps/components_guide/lib/components_guide/application.ex

-25
This file was deleted.

apps/components_guide/mix.exs

-56
This file was deleted.

apps/components_guide_web/.formatter.exs

-4
This file was deleted.

apps/components_guide_web/.gitignore

-34
This file was deleted.

apps/components_guide_web/README.md

-20
This file was deleted.

apps/components_guide_web/mix.exs

-68
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*
2+
* ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
3+
* This devtool is neither made for production nor for readable output files.
4+
* It uses "eval()" calls to create a separate source file in the browser devtools.
5+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
6+
* or disable the default devtool with "devtool: false".
7+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
8+
*/
9+
/******/ (() => { // webpackBootstrap
10+
/******/ "use strict";
11+
var __webpack_exports__ = {};
12+
/******/ })()
13+
;

apps/components_guide_web/test/test_helper.exs

-1
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

config/config.exs

+1-6
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,8 @@
99
# move said applications out of the umbrella.
1010
use Mix.Config
1111

12-
13-
14-
config :components_guide_web,
15-
generators: [context_app: :components_guide]
16-
1712
# Configures the endpoint
18-
config :components_guide_web, ComponentsGuideWeb.Endpoint,
13+
config :components_guide, ComponentsGuideWeb.Endpoint,
1914
url: [host: "localhost"],
2015
secret_key_base: "GIQzLogQXRdH7r9im+a6kEsZIbX6FmAvCt8bj+BYSkBahfkl6u9oRHSPs7Go81at",
2116
render_errors: [view: ComponentsGuideWeb.ErrorView, accepts: ~w(html json)],

config/dev.exs

+7-8
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ use Mix.Config
66
# The watchers configuration can be used to run external
77
# watchers to your application. For example, we use it
88
# with webpack to recompile .js and .css sources.
9-
config :components_guide_web, ComponentsGuideWeb.Endpoint,
9+
config :components_guide, ComponentsGuideWeb.Endpoint,
1010
http: [port: 4333],
11-
debug_errors: true,
11+
check_origin: false,
1212
code_reloader: true,
13+
debug_errors: true,
1314
# reloadable_compilers: [:phoenix, :gettext],
14-
reloadable_apps: [:components_guide, :components_guide_web],
15-
check_origin: false,
15+
secret_key_base: "98yN/0NbJtdHMD0KaWg6ISyxFUpTDT/2nus2c96f8kMF76kqY7dqIWKkOL2Uk6SQ",
1616
watchers: [
1717
npm: [
1818
"run",
1919
"watch",
20-
cd: Path.expand("../apps/components_guide_web/assets", __DIR__)
20+
cd: Path.expand("../assets", __DIR__)
2121
]
2222
]
2323

@@ -46,14 +46,13 @@ config :components_guide_web, ComponentsGuideWeb.Endpoint,
4646
# different ports.
4747

4848
# Watch static and templates for browser reloading.
49-
config :components_guide_web, ComponentsGuideWeb.Endpoint,
49+
config :components_guide, ComponentsGuideWeb.Endpoint,
5050
live_reload: [
5151
patterns: [
5252
~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$",
5353
~r"priv/gettext/.*(po)$",
5454
~r"lib/components_guide_web/{live,views}/.*(ex)$",
55-
~r"lib/components_guide_web/templates/.*(eex|md)$",
56-
~r{lib/components_guide_web/live/.*(ex)$}
55+
~r"lib/components_guide_web/templates/.*(eex|md)$"
5756
]
5857
]
5958

0 commit comments

Comments
 (0)