Skip to content

Commit

Permalink
Merge pull request #26 from bitovi/run-through/updates
Browse files Browse the repository at this point in the history
links
  • Loading branch information
DavidNic11 authored Jul 30, 2024
2 parents 347cc23 + 03fb4bd commit c091043
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 44 deletions.
65 changes: 24 additions & 41 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,42 +1,25 @@
npx nx run shell:dev
npx nx run-many -t dev
npx nx run-many -t dev --parallel=10

nx run <package-name>:<script>
nx run-many -t <script>

```json
{
"extends": "nx/presets/npm.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": [
"typecheck",
"lint",
"depcheck",
"test",
"clean",
"build"
]
}
}
},
"targetDefaults": {
"typecheck": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
"build": {
"dependsOn": ["^build", "clean"]
},
"dev": {
"dependsOn": ["^build"]
}
}
}
<div align="center">
<h1>Enterprise Grade Micro Frontends</h1>
<strong>Dive into the world of Micro Frontends in this dynamic workshop designed for intermediate and advanced developers</strong>
</div>

<hr />

## Hello - Nice to meet you!

This application is a tool to help developers learn about micro frontends and is part of a larger workshop called Enterprise Grade Micro Frontends. The slides and additional resources can be found on our website here.

If you have any questions or need further assistance, please join our community on [Bitovi's Discord](https://discord.gg/uNZFcEMw), where many developers are available to help. Enjoy exploring and learning!

## Here's Some Helpful Scripts

```sh
# nx run <package-name>:<script>
# nx run-many -t <script>

# Ex
nx run shell:dev

# Ex
nx run-many -t dev --parallel=10
```
3 changes: 2 additions & 1 deletion packages/shell/rsbuild.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export default defineConfig({
tag: "meta",
attrs: {
property: "og:image",
content: "https://workshop-mfe.bitovi-sandbox.com/title-card.png",
content:
"https://davidnic11.github.io/workshop-enterprise-grade-micro-frontends/title-card.png",
},
},
],
Expand Down
3 changes: 2 additions & 1 deletion packages/workshop/rsbuild.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ export default defineConfig({
tag: "meta",
attrs: {
property: "og:image",
content: "https://workshop-mfe.bitovi-sandbox.com/title-card.png",
content:
"https://davidnic11.github.io/workshop-enterprise-grade-micro-frontends/title-card.png",
},
},
],
Expand Down
5 changes: 4 additions & 1 deletion packages/workshop/src/scenes/Welcome/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ const Welcome: WelcomeScene = () => {
awesome! The slides are built out with discussion in mind so they
may be hard to follow. If you have anything you'd like to discuss
you can find many developers able to answer your questions in{" "}
<Anchor href="/" sx={{ color: "#00848B" }}>
<Anchor
href="https://discord.gg/uNZFcEMw"
sx={{ color: "#00848B" }}
>
Bitovi's Discord
</Anchor>
.
Expand Down

0 comments on commit c091043

Please sign in to comment.