Calendaring app for shift-workers to enter their uneven work schedule more easily
Go to file
Adam Piontek 120b80dc69 minor readme edit 2021-03-26 17:22:37 -04:00
assets implement custom favicon 2021-03-25 19:11:51 -04:00
config removing prod.secret.exs from version control 2021-03-25 15:56:25 -04:00
lib fixing page titles, fleshing out readme 2021-03-25 20:31:32 -04:00
priv calendar slug added, settings quick change working 2021-03-23 13:29:46 -04:00
test much progress on shift assigning & app navigation 2021-03-19 16:38:52 -04:00
.formatter.exs Create phoenix project 2020-09-12 19:47:24 -03:00
.gitignore updated gitignore & readme 2021-03-16 11:39:53 -04:00
.iex.exs month & shift navigation progress 2021-03-15 15:46:59 -04:00
README.md minor readme edit 2021-03-26 17:22:37 -04:00
mix.exs initial work on allowing import from ics/iCal 2021-03-24 19:35:49 -04:00
mix.lock initial work on allowing import from ics/iCal 2021-03-24 19:35:49 -04:00

README.md

Shift73k

Calendaring app for shift-worker shift tracking, with support for CSV export and sharing work schedule with others.

Written in Elixir & Phoenix LiveView, with Bootstrap v5.

TODO

  • Ability to edit shifts?
  • Proper modal to delete shifts?
  • Allow all-day items for notes, or require hours even for sick days?

Deploying

New versions

When improvements are made, we can update the deployed version like so:

cd /opt/shift73k
git pull
mix deps.get --only prod
MIX_ENV=prod mix compile
# might not be needed:
MIX_ENV=prod mix ecto.migrate
# rebuild static assets:
rm -rf priv/static/
npm run deploy --prefix ./assets
MIX_ENV=prod mix phx.digest
MIX_ENV=prod mix release --overwrite
# test starting it:
MIX_ENV=prod _build/prod/rel/shift73k/bin/shift73k start

systemd unit:

[Unit]
Description=Shift73k service
After=local-fs.target network.target

[Service]
Type=simple
User=runuser
Group=runuser
WorkingDirectory=/opt/shift73k/_build/prod/rel/shift73k
ExecStart=/opt/shift73k/_build/prod/rel/shift73k/bin/shift73k start
ExecStop=/opt/shift73k/_build/prod/rel/shift73k/bin/shift73k stop
#EnvironmentFile=/etc/default/myApp.env
Environment=LANG=en_US.utf8
Environment=MIX_ENV=prod
#Environment=PORT=4000
LimitNOFILE=65535
UMask=0027
SyslogIdentifier=shift73k
Restart=always

[Install]
WantedBy=multi-user.target

nginx config:

upstream phoenix {
  server 127.0.0.1:4000 max_fails=5 fail_timeout=60s;
}
server {
  location / {
    allow all;
    # Proxy Headers
    proxy_http_version 1.1;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-Cluster-Client-Ip $remote_addr;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_redirect off;
    # WebSockets
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
    proxy_pass http://phoenix;
  }
}