Skip to content

Commit fa009ff

Browse files
committed
initial demo
1 parent d7df886 commit fa009ff

File tree

119 files changed

+24978
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+24978
-1
lines changed

.config/dotnet-tools.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {}
5+
}

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.github/workflows/ci.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
permissions:
10+
actions: read
11+
contents: read
12+
13+
jobs:
14+
main:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
20+
21+
- uses: nrwl/nx-set-shas@v4
22+
23+
# Cache node_modules
24+
- uses: actions/setup-node@v4
25+
with:
26+
node-version-file: 'package.json'
27+
cache: npm
28+
29+
- uses: actions/setup-dotnet@v3
30+
with:
31+
dotnet-version: '9.0.x'
32+
33+
- run: npm ci
34+
- run: npx cypress install
35+
36+
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
37+
# - run: npx nx-cloud record -- echo Hello World
38+
- run: npx nx affected -t lint test build e2e --verbose

.gitignore

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2+
3+
# compiled output
4+
dist
5+
tmp
6+
out-tsc
7+
8+
# dependencies
9+
node_modules
10+
11+
# IDEs and editors
12+
/.idea
13+
.project
14+
.classpath
15+
.c9/
16+
*.launch
17+
.settings/
18+
*.sublime-workspace
19+
20+
# IDE - VSCode
21+
.vscode/*
22+
!.vscode/settings.json
23+
!.vscode/tasks.json
24+
!.vscode/launch.json
25+
!.vscode/extensions.json
26+
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
37+
# System Files
38+
.DS_Store
39+
Thumbs.db
40+
41+
.nx/cache
42+
.nx/workspace-data
43+
44+
vite.config.*.timestamp*
45+
vitest.config.*.timestamp*
46+
test-output

.prettierignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Add files here to ignore them from prettier formatting
2+
/dist
3+
/coverage
4+
/.nx/cache
5+
/.nx/workspace-data

.prettierrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.verdaccio/config.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# path to a directory with all packages
2+
storage: ../tmp/local-registry/storage
3+
4+
# a list of other known repositories we can talk to
5+
uplinks:
6+
npmjs:
7+
url: https://registry.npmjs.org/
8+
maxage: 60m
9+
10+
packages:
11+
'**':
12+
# give all users (including non-authenticated users) full access
13+
# because it is a local registry
14+
access: $all
15+
publish: $all
16+
unpublish: $all
17+
18+
# if package is not available locally, proxy requests to npm registry
19+
proxy: npmjs
20+
21+
# log settings
22+
log:
23+
type: stdout
24+
format: pretty
25+
level: warn
26+
27+
publish:
28+
allow_offline: true # set offline to true to allow publish offline

.vscode/extensions.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"nrwl.angular-console",
4+
"esbenp.prettier-vscode",
5+
"dbaeumer.vscode-eslint"
6+
]
7+
}

Directory.Build.props

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!--
2+
This file is imported early in the build order.
3+
Use it to set default property values that can be overridden in specific projects.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<!-- Output path configuration -->
8+
<RepoRoot>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))</RepoRoot>
9+
<ProjectRelativePath>$([MSBuild]::MakeRelative($(RepoRoot), $(MSBuildProjectDirectory)))</ProjectRelativePath>
10+
<BaseOutputPath>$(RepoRoot)dist/$(ProjectRelativePath)</BaseOutputPath>
11+
<OutputPath>$(BaseOutputPath)</OutputPath>
12+
<BaseIntermediateOutputPath>$(RepoRoot)dist/intermediates/$(ProjectRelativePath)/obj</BaseIntermediateOutputPath>
13+
<IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
14+
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
15+
</PropertyGroup>
16+
<PropertyGroup>
17+
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
18+
</PropertyGroup>
19+
</Project>

Directory.Build.targets

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!--
2+
This file is imported late in the build order.
3+
Use it to override properties and define dependent properties.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<MSBuildProjectDirRelativePath>$([MSBuild]::MakeRelative($(RepoRoot), $(MSBuildProjectDirectory)))</MSBuildProjectDirRelativePath>
8+
<NodeModulesRelativePath>$([MSBuild]::MakeRelative($(MSBuildProjectDirectory), $(RepoRoot)))</NodeModulesRelativePath>
9+
</PropertyGroup>
10+
<Target Name="CheckNxModuleBoundaries" BeforeTargets="Build">
11+
<Exec Command="node $(NodeModulesRelativePath)/node_modules/@nx-dotnet/core/src/tasks/check-module-boundaries.js --project-root &quot;$(MSBuildProjectDirRelativePath)&quot;"/>
12+
</Target>
13+
</Project>

README.md

+114-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,114 @@
1-
# multilanguage-monorepo
1+
# Nx Multilanguage Monorepo
2+
3+
This is a multilanguage monorepo powered by [Nx](https://nx.dev), designed to support scalable development across multiple languages and frameworks. It enables clear separation of concerns, efficient CI, and consistent tooling for all project types.
4+
5+
---
6+
7+
## 📦 Tech Stack
8+
9+
Currently supported languages and frameworks:
10+
11+
- **React (TypeScript)** – via `@nx/react`
12+
- **.NET Core (C#)** – via `@nx-dotnet/core`
13+
- **Node.js** – via `@nx/node`, `@nx/express`
14+
- **Python** _(planned)_ – via `@nxlv/python`, `nx-python`
15+
- **Kotlin/Java** _(planned)_ – via `@nx/gradle`, `jnxplus`
16+
17+
---
18+
19+
## 📁 Folder Structure
20+
21+
To get an overview of the folders structure visit [`docs/folder-structure.md`](./docs/folder-structure.md).
22+
23+
---
24+
25+
## 🧩 Project Naming
26+
27+
See [`docs/naming-and-tags.md`](./docs/naming-and-tags.md) for details on naming and tagging conventions.
28+
29+
---
30+
31+
## 🧭 Nx Plugin Reference
32+
33+
A detailed comparison of available Nx plugins across languages is available in [`docs/nx-multilang-plugins.md`](./docs/nx-multilang-plugins.md), including capabilities and maintenance status.
34+
35+
---
36+
37+
## 🚀 Getting Started
38+
39+
### Prerequisites
40+
41+
- [Node.js (18+)](https://nodejs.org/)
42+
- [Nx CLI](https://nx.dev/cli) – optional but recommended
43+
- [.NET SDK](https://dotnet.microsoft.com/) (only for C# projects)
44+
45+
### Serving Full Stack
46+
47+
To run a full stack app (React + .NET Core), use the following commands:
48+
49+
```bash
50+
# Install dependencies
51+
npm install
52+
```
53+
54+
```bash
55+
# Start the React app
56+
npx nx run react-transactions-app:serve
57+
```
58+
59+
> Requires a .NET setup
60+
61+
```bash
62+
# Run setup command
63+
npm run dotnet:setup
64+
# Start the .NET Core app
65+
npx nx run dotnet-transactions-api:serve --port=5087
66+
```
67+
68+
### React setup
69+
70+
To serve the react application, use the following commands:
71+
72+
```bash
73+
# Install dependencies
74+
npm install
75+
76+
# Run an app
77+
npx nx serve react-transactions-app
78+
```
79+
80+
### .NET Setup
81+
82+
> This section is only relevant for developers working on .NET Core projects.
83+
> other language contributors can safely skip this.
84+
85+
For step-by-step instructions to add and work with .NET Core projects, see [`docs/dotnet-nx-setup.md`](./docs/dotnet-nx-setup.md).
86+
87+
### View projects graph
88+
89+
```bash
90+
npx nx dep-graph
91+
```
92+
93+
---
94+
95+
## 🧪 CI/CD
96+
97+
TODO
98+
99+
---
100+
101+
## 📚 Documentation
102+
103+
- [`docs/monorepo-benefits.md`](./docs/monorepo-benefits.md)
104+
- [`docs/folder-structure.md`](./docs/folder-structure.md)
105+
- [`docs/naming-and-tags.md`](./docs/naming-and-tags.md)
106+
- [`docs/monorepo-generation.md`](./docs/monorepo-generation.md)
107+
- [`docs/react-lib-generation.md`](./docs/react-lib-generation.md)
108+
- [`docs/nx-multilang-plugins.md`](./docs/nx-multilang-plugins.md)
109+
- [`docs/dotnet-nx-setup.md`](./docs/dotnet-nx-setup.md)
110+
- [`docs/troubleshooting.md`](./docs/troubleshooting.md)
111+
112+
---
113+
114+
made with ❤ by [push-based.io](https://www.push-based.io)
Loading
26.4 KB
Loading
10.4 KB
Loading
3.83 KB
Loading
4.65 KB
Loading
10.7 KB
Loading
26 KB
Loading
13.9 KB
Loading
3.37 KB
Loading
8.83 KB
Loading
9.49 KB
Loading
8.56 KB
Loading
10.1 KB
Loading
21 KB
Loading
18.1 KB
Loading
8.53 KB
Loading
7.02 KB
Loading
8.31 KB
Loading
5.92 KB
Loading

0 commit comments

Comments
 (0)