Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
485 changes: 485 additions & 0 deletions .claude/commands/generate-entity.md

Large diffs are not rendered by default.

48 changes: 48 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
!/log/.keep
!/tmp/.keep

# Ignore uploaded files in development
/storage/*

# Ignore temporary *.swp files
*.swp

# Ignore test databases
/db.sqlite.test.*

.byebug_history

# Ignore master key for decrypting credentials and more.
/config/master.key

/coverage

# Ignore built binaries
/hyperfleet-api

# Ignore generated templates
/templates/*-template.json

# Ignore editor config
.vscode

# Ignore IntelliJ config
.idea/

# Ignore secrets directory
secrets

# Ignore vendor directory
/vendor/
1 change: 1 addition & 0 deletions .golangciversion
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.43.0
Loading