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

PWA Elm application #6

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a9db803
remove phoenix code
SimonLab Dec 16, 2019
8de5e89
initialise elm app structure
SimonLab Dec 16, 2019
d7d9f98
copy elm Browser.application demo for testing deployment on Github
SimonLab Dec 16, 2019
a79a33b
capture text with api
SimonLab Dec 16, 2019
47615ea
add service worker
SimonLab Dec 16, 2019
bc65d55
make application load offline, #56
SimonLab Dec 16, 2019
216aab0
define start url for pwa
SimonLab Dec 16, 2019
f878147
use heroku url for api, #55
SimonLab Dec 16, 2019
74df4a7
udpate url for gh-pages
SimonLab Dec 16, 2019
a0a9c20
update sw cache link
SimonLab Dec 16, 2019
29b1ddd
udpate cache name
SimonLab Dec 16, 2019
e7f5a23
add assets folder, #4
SimonLab Dec 17, 2019
e6c1dba
style Capture view with Tachyons, #4
SimonLab Dec 17, 2019
05cb895
apply tachyons styling, #4
SimonLab Dec 17, 2019
68467d5
detect connection status and display offline icon, #5
SimonLab Dec 17, 2019
2ee267e
display offline icon, #5
SimonLab Dec 17, 2019
99e1ae4
apply lighthouse suggestions
SimonLab Dec 17, 2019
00a4c4d
add meta description
SimonLab Dec 17, 2019
ef81bdc
udpate url path for service worker
SimonLab Dec 17, 2019
b063020
add scope for service worker
SimonLab Dec 17, 2019
0745a92
add scope for service worker
SimonLab Dec 17, 2019
2802386
update link service worker to /
SimonLab Dec 17, 2019
5016dfa
use /elm-pwa-example base url for service worker
SimonLab Dec 17, 2019
ed1f5a4
update link for service worker to test with Githug pages
SimonLab Dec 17, 2019
13adc86
update start_url in manifest
SimonLab Dec 17, 2019
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
5 changes: 0 additions & 5 deletions .formatter.exs

This file was deleted.

47 changes: 1 addition & 46 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,46 +1 @@
# 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

# If NPM crashes, it generates a log, let's ignore it too.
npm-debug.log

# The directory NPM downloads your dependencies sources to.
/assets/node_modules/

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

# any compiled files:
*.beam

# secrets
/config/*.secret.exs
*.DS_Store

# VS code elixir_ls folder see https://github.com/JakeBecker/vscode-elixir-ls
.elixir_ls

.env
elm-stuff/
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion Procfile

This file was deleted.

Loading