Skip to content

Commit

Permalink
add redis and fix JobCard
Browse files Browse the repository at this point in the history
  • Loading branch information
ocodista committed Sep 24, 2024
1 parent 45c8b41 commit 7bd387c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/web/app/components/ui/JobCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const JobCard = ({ job, skillsFromProps }) => {

return (
<a
href={trackedRoleURL(job.url)}
href={trackedRoleURL(job.id)}
target="_blank"
className="shadow-brand-shadow border-box w-full cursor-pointer rounded-lg border-[1px] bg-[#FCFCFD] p-[30px] hover:border-[1px] hover:border-[#4f46e5] "
rel="noreferrer"
Expand Down
7 changes: 6 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ services:
expose:
- 5672
- 15672
redis:
image: redis
container_name: redis
ports:
- '6379:6379'

mongo:
image: mongo:latest
Expand All @@ -31,4 +36,4 @@ services:

volumes:
mongo-data:
driver: local
driver: local

0 comments on commit 7bd387c

Please sign in to comment.