Skip to content

Commit

Permalink
Merge pull request #277 from panoratech/fix-docker-dev-container
Browse files Browse the repository at this point in the history
Fix docker dev container
  • Loading branch information
rflihxyz authored Feb 5, 2024
2 parents 0e3211a + 6e0d212 commit e223864
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,14 @@ Visit our [Quickstart Guide](https://docs.panora.dev/quick-start) to start addin

<a href="https://cal.com/rflih/30?utm_source=github&utm_campaign=readme"><img alt="Book us with Cal.com" src="https://cal.com/book-with-cal-dark.svg" /></a>

## 🚀 Contributions
## 🚀 Contributors

This guide is intended for people willing to contribute to Panora.
You can follow this guide to set up a Panora development environment on your machine.
Visit our [guide](https://docs.panora.dev/open-source/contributors#setup-your-environnement) or check our detailed integrations guide [here.](https://github.com/panoratech/Panora/blob/main/INTEGRATIONS.md)
<a href="https://github.com/panoratech/Panora/graphs/contributors">
<img src="https://contrib.rocks/image?repo=panoratech/Panora" />
</a>

You can also follow our [guidelines.](https://github.com/panoratech/Panora/blob/main/CONTRIBUTING.md)
Want to contribute? Visit our [guide](https://docs.panora.dev/open-source/contributors#setup-your-environnement) or check our detailed integrations guide [here.](https://github.com/panoratech/Panora/blob/main/INTEGRATIONS.md)

Our [guidelines.](https://github.com/panoratech/Panora/blob/main/CONTRIBUTING.md)

<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=3be49a98-8805-45ca-bd15-99f5321ec235" />
2 changes: 1 addition & 1 deletion docs/open-source/contributors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cp .env.example .env

<Step title="Mac Users only:">
```bash
echo "node-linker=hoisted" > .npmrc
echo -e "node-linker=hoisted\npackage-import-method=clone-or-copy" > .npmrc
```
</Step>

Expand Down
2 changes: 1 addition & 1 deletion packages/api/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ WORKDIR /app
RUN pnpm add -g turbo

# Start API
CMD pnpm install --frozen-lockfile && cd packages/api && npx prisma db pull && npx prisma generate && pnpm run start:dev
CMD pnpm install && cd packages/api && npx prisma db pull && npx prisma generate && pnpm run start:dev

0 comments on commit e223864

Please sign in to comment.