Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Rails Master Key
# Get this value from: cat config/master.key
# NEVER commit the actual key to version control
RAILS_MASTER_KEY=your_master_key_here
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
# Ignore bundler config.
/.bundle

# Ignore all environment files.
# Ignore all environment files (except .env.example).
/.env*
!/.env.example

# Ignore all logfiles and tempfiles.
/log/*
Expand Down Expand Up @@ -36,3 +37,6 @@

/app/assets/builds/*
!/app/assets/builds/.keep

# Ignore local seed files
/db/seeds_real_projects.rb
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
ARG RUBY_VERSION=3.3.6
FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base

# Image metadata
LABEL org.opencontainers.image.title="Task Tracker" \
org.opencontainers.image.description="A Rails-based task management application" \
org.opencontainers.image.vendor="Task Tracker" \
org.opencontainers.image.source="https://github.com/sbafsk/task-tracker"

# Rails app lives here
WORKDIR /rails

Expand Down
Loading