https://github.com/mulecode/ddd-poc
An example spring boot application structured using domain driven design
https://github.com/mulecode/ddd-poc
ddd poc service
Last synced: about 1 year ago
JSON representation
An example spring boot application structured using domain driven design
- Host: GitHub
- URL: https://github.com/mulecode/ddd-poc
- Owner: mulecode
- Created: 2024-12-17T22:22:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-08T22:47:16.000Z (over 1 year ago)
- Last Synced: 2025-03-08T23:20:50.041Z (over 1 year ago)
- Topics: ddd, poc, service
- Language: Kotlin
- Homepage:
- Size: 7.19 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ddd-poc
An example spring boot application structured using domain driven design
# Installing Next
```shell
npx --version
11.1.0
```
```shell
which npx
/Users/***/Library/Application Support/JetBrains/IntelliJIdea2024.3/node/versions/22.13.1/bin/npx
```
Aparently already installed with IntelliJ IDEA
```shell
npx create-next-app@latest --ts
```
next.config.ts add the base path to the app:
```javascript
const nextConfig: NextConfig = {
basePath: '/app',
/* other config options */
};
```
to run:
```shell
npm run dev
```
to build:
```shell
npm run build
```
it will create a .next folder with the build files