Final changes to readmes

This commit is contained in:
Stedoss 2023-12-07 01:12:12 +00:00
parent 025983bd21
commit ecc97d06cd
4 changed files with 1656 additions and 1398 deletions

View File

@ -23,6 +23,12 @@ dotnet run
### Configuring ### Configuring
The app should already be setup to work in development mode with the frontend. For configuration options, use `YPS.Beer/appsettings{.Development}.json` The app should already be setup to work in development mode with the frontend. For configuration options, use `YPS.Beer/appsettings{.Development}.json`
### Running tests
To run the unit tests, run:
```sh
dotnet test
```
## Technology ## Technology
To create this project, the following was used: To create this project, the following was used:
* .NET 8 * .NET 8

View File

@ -29,6 +29,12 @@ http://localhost:3000
### Configuring ### Configuring
The app should already be configured to connect to the backend once it is running, but the URL can be modified at `src/utils/configuration.ts`. The app should already be configured to connect to the backend once it is running, but the URL can be modified at `src/utils/configuration.ts`.
### Testing
To run the unit tests, run:
```sh
npm run test
```
## Technology ## Technology
To create this project, the following was used: To create this project, the following was used:
* Node 20 * Node 20

File diff suppressed because it is too large Load Diff

View File

@ -20,7 +20,6 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/types": "^7.21.4", "@babel/types": "^7.21.4",
"@testing-library/vue": "^8.0.1",
"@types/node": "^18.15.0", "@types/node": "^18.15.0",
"@vitejs/plugin-vue": "^4.0.0", "@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.0", "@vue/eslint-config-typescript": "^11.0.0",
@ -31,6 +30,7 @@
"unplugin-fonts": "^1.0.3", "unplugin-fonts": "^1.0.3",
"vite": "^4.2.0", "vite": "^4.2.0",
"vite-plugin-vuetify": "^1.0.0", "vite-plugin-vuetify": "^1.0.0",
"vitest": "^1.0.1",
"vue-tsc": "^1.2.0" "vue-tsc": "^1.2.0"
} }
} }