Skip to content

Commit

Permalink
Merge pull request #55 from dwyl/phoenix-1.7rc
Browse files Browse the repository at this point in the history
[PR] Phoenix 1.7rc upgrade
  • Loading branch information
nelsonic authored Dec 9, 2022
2 parents e945ed2 + 812a42a commit 5a8e85f
Show file tree
Hide file tree
Showing 78 changed files with 2,423 additions and 1,846 deletions.
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

0 comments on commit 5a8e85f

Please sign in to comment.