Feat/biblionode UI init - #24
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request sets up the initial project structure and configuration for the
biblionode-uiAngular application. It introduces essential configuration files for development, formatting, building, and running the app, as well as dependency management and basic documentation. The changes lay the groundwork for consistent development practices and smooth project setup.Project configuration and setup:
angular.jsonto configure the Angular CLI project, including build and serve options, asset handling, and style pre-processing.package.jsonwith all necessary dependencies, scripts, and devDependencies for Angular, Tailwind CSS, Prettier, and testing tools.proxy.conf.jsonto enable API proxying during development, targeting a backend server athttp://localhost:8080.Development tooling and formatting:
.editorconfigand.prettierrcto enforce consistent code style and formatting across editors and contributors. [1] [2].gitignoreto exclude build artifacts, dependencies, IDE files, and system files from version control.Documentation and resources:
README.mdwith instructions for setup, development, building, testing, and additional Angular CLI resources.Build and styling tools:
.postcssrc.jsonto configure PostCSS with Tailwind CSS plugin for advanced styling capabilities.Initial application configuration:
src/app/app.config.tsto provide core Angular providers, routing, HTTP client with an authentication interceptor, and global error listeners.