- Make sure Claude Code is installed
claude --version
If not installed, install via npm:
npm install -g @anthropic-ai/claude-code
claude --version
If not installed, install via npm:
npm install -g @anthropic-ai/claude-code
| services: | |
| traefik: | |
| image: traefik:v3 | |
| container_name: traefik | |
| restart: unless-stopped | |
| ports: | |
| - "80:80" | |
| - "443:443" | |
| command: | |
| - --providers.docker=true |
| { | |
| # Enable FrankenPHP | |
| frankenphp | |
| # auto_https off | |
| # encode zstd gzip | |
| # Optional: better dev performance | |
| order frankenphp before file_server | |
| } | |
| :8000 { |
| name: Pest Tests | |
| on: | |
| push: | |
| branches: | |
| - 'bugfix/**' | |
| - 'feature/**' | |
| pull_request: | |
| branches: | |
| - 'bugfix/**' |
| html, | |
| body { | |
| height: 100%; | |
| min-height: 500vh; | |
| margin: 0; | |
| font-family: system-ui, sans-serif; | |
| overflow-x: hidden; | |
| } | |
| .bg { | |
| position: absolute; |
| <?php | |
| function kaprekar_constant($number) | |
| { | |
| $constant = 6174; | |
| if (strlen((string)$number) == 3) { | |
| $constant = 495; | |
| } | |
| do { |
If you want your Gitea instance to send notification emails, you can either install Postfix or use some transactional mail service such as SendGrid, MailChimp, MailGun, or SES.
To enable email notifications, open the configuration file and edit the following lines:
sudo nano /etc/gitea/app.ini
[mailer]