Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR] Phoenix 1.7rc upgrade #55

Merged
merged 20 commits into from
Dec 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
b158abd
feat: Initial commit with new app until repo. #54
LuchoTurtle Dec 5, 2022
7e06a4d
fix: Fixing images and directories when adding MVP css. #54
LuchoTurtle Dec 5, 2022
2f880b8
feat: Fixing "Render _Real_ Data in the TodoMVC Layout" in readme. #54
LuchoTurtle Dec 5, 2022
d277c82
fix: Wip 5.0 readme section. #54
LuchoTurtle Dec 6, 2022
8bcc323
fix: Overriding project with Phoenix 1.7rc-based one. #54
LuchoTurtle Dec 6, 2022
3c04ee3
fix: Finishing review of section 5. #54
LuchoTurtle Dec 6, 2022
32acb54
fix: Fixing Section 6 of readme. #54
LuchoTurtle Dec 6, 2022
bbaa6ca
fix: Revising section 8 of readme. #54
LuchoTurtle Dec 6, 2022
7f6cb12
fix: Fixing order of todos on completion. #54
LuchoTurtle Dec 6, 2022
a218903
fix: Fixing delete issue. #54
LuchoTurtle Dec 7, 2022
3329d8f
fix: Fixing half os section 8 of readme. #54
LuchoTurtle Dec 7, 2022
3d5d839
fix: Finishing Section 8 in readme. #54
LuchoTurtle Dec 7, 2022
50cce48
fix: Fixing section 10 of readme. #54
LuchoTurtle Dec 7, 2022
22bd973
fix: Fixing section 10 of readme. #54
LuchoTurtle Dec 7, 2022
d56ba62
fix: Fixing section 11.1 on readme. #54
LuchoTurtle Dec 7, 2022
12e0c1c
fix: Fixing section 11.2 on readme. #54
LuchoTurtle Dec 8, 2022
142748d
fix: Fixing section 11.4 on readme. #54
LuchoTurtle Dec 8, 2022
a341c2c
fix: Adding turbo with section 11.5. #54
LuchoTurtle Dec 8, 2022
6649a67
fix: Fixing permalinks on each example. #54
LuchoTurtle Dec 8, 2022
812a42a
fix: Fixing typos and permalink. #54
LuchoTurtle Dec 8, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .formatter.exs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[
import_deps: [:ecto, :phoenix],
inputs: ["*.{ex,exs}", "priv/*/seeds.exs", "{config,lib,test}/**/*.{ex,exs}"],
subdirectories: ["priv/*/migrations"]
import_deps: [:ecto, :ecto_sql, :phoenix],
subdirectories: ["priv/*/migrations"],
plugins: [Phoenix.LiveView.HTMLFormatter],
inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}", "priv/*/seeds.exs"]
]
65 changes: 22 additions & 43 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,55 +1,34 @@
# App artifacts
/_build
/db
/deps
/*.ez
# 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

# Ignore package tarball (built via "mix hex.build").
app-*.tar

# Generated on crash by the VM
erl_crash.dump
# Ignore assets that are produced by build tools.
/priv/static/assets/

# Static artifacts
node_modules
node_modules/*
# Ignore digested assets cache.
/priv/static/cache_manifest.json

# In case you use Node.js/npm, you want to ignore these.
npm-debug.log
assets/package-lock.json

# Since we are building assets from web/static,
# we ignore priv/static. You may want to comment
# this depending on your deployment strategy.
/priv/static/

# The config/prod.secret.exs file by default contains sensitive
# data and you should not commit it into version control.
#
# Alternatively, you may comment the line below and commit the
# secrets file as long as you replace its contents by environment
# variables.
# /config/prod.secret.exs

lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

.DS_Store
.vagrant
test/coverage.html
coverage/
cover/
/assets/node_modules/

22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

Loading