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

Add Database URL #5

Merged
merged 1 commit into from
Apr 20, 2024
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -117,6 +117,7 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}
env:
NODE_ENV: production
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: |
docker pull varkoff/nestjs-remix-monorepo:production
docker compose -f docker-compose.prod.yml up -d

Unchanged files with check annotations Beta

return (
<nav className='px-3 py-2 bg-bleu text-white flex justify-between items-center'>
<Link to='/'>
<img src={logo} className='w-full h-auto max-w-[120px]' />

Check warning on line 10 in frontend/app/components/Navbar.tsx

GitHub Actions / ⬣ ESLint

img elements must have an alt prop, either with meaningful text, or an empty string for decorative images
</Link>
<div className='flex gap-2'>
{user ? (
import { vitePlugin as remix } from '@remix-run/dev';
import { installGlobals } from '@remix-run/node';
import { resolve } from 'path';

Check warning on line 3 in frontend/vite.config.ts

GitHub Actions / ⬣ ESLint

`path` import should occur before import of `@remix-run/dev`
import { flatRoutes } from 'remix-flat-routes';
import { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';