## File: README.md # Clean Architecture with .NET Core & React+Redux :cyclone: [](#contributors) [](https://dev.azure.com/ivanpaulovich/clean-architecture-manga/_build/latest?definitionId=20&branchName=master) Sample implementation of the **Clean Architecture Principles with .NET Core**. Use cases as central organizing structure, decoupled from frameworks and technology details. Built by small components that are developed and tested in isolation. We support two versions: - [.NET 6](https://github.com/ivanpaulovich/clean-architecture-manga/tree/main) - .NET 6. - [.NET 5](https://github.com/ivanpaulovich/clean-architecture-manga/tree/dotnet5.0) - .NET 5. - [.NET Core 3.1](https://github.com/ivanpaulovich/clean-architecture-manga/tree/dotnet3.1) - .NET Core 3.1. > Hit the `WATCH` button to get the latest Clean Architecture updates. Manga is a Virtual Wallet Solution in which the customer register an account then manage the balance by `Deposit`, `Withdraw` and `Transfer` operations. We also support the React client: [](https://clean-architecture-manga.azurewebsites.net) ## Build & Run To startup the whole solution, execute the following command: Windows: ```ps1 PS cd .docker && ./setup.ps1 ``` MacOS: ```sh $ cd .docker && ./setup.sh ``` Then the following containers should be running on `docker ps`: | Application | URL | |-------------------- | ----------------------------------------------------------------------------- | | NGINX | https://wallet.local:8081 | | Wallet SPA | https://wallet.local:8081 | | Accounts API | https://wallet.local:8081/accounts-api | | Identity Server | https://wallet.local:8081/identity-server | | SQL Server | Server=localhost;User Id=sa;Password=;Database=Accounts; | Browse to [https://wallet.local:8081](https://wallet.local:8081) then click on Log In. If asked trust the [self-signed certificate](https://stackoverflow.com/questions/21397809/create-a-trusted-self-signed-ssl-cert-for-localhost-for-use-with-express-node). ## Motivation > Learn how to design modular applications. > > Explore the .NET Core features. ### Learn how to design modular applications Learning how to design modular applications will help you become a better engineer. Designing modular applications is the holy grail of software architecture, it is hard to find engineers experienced on designing applications which allows adding new features in a steady speed. ### Explore the .NET Core features .NET Core brings a sweet development environment, an extensible and cross-platform framework. We will explore the benefits of it in the infrastructure layer and we will reduce its importance in the application and domain layers. The same rule is applied for modern C# language syntax. ### Learn from the open source community This is continually updated, open source project. [Contributions](#contributors-) are welcome! ## Contributing > Learn from the community. Feel free to submit pull requests to help: * Fix errors. * Refactoring. * Build the Front End. * Submit issues and bugs. > The [Discussão em Português](https://github.com/ivanpaulovich/clean-architecture-manga/issues/149) is pinned for the large community of brazillian developers. ## Index of Clean Architecture Manga ### [Home](https://github.com/ivanpaulovich/clean-architecture-manga/wiki) - [Motivation](https://github.com/ivanpaulovich/clean-architecture-manga/wiki#motivation) * [Learn how to design modular applications](https://github.com/ivanpaulovich/clean-architecture-manga/wiki#learn-how-to-design-modular-applications) * [Explore the .NET Core features](https://github.com/ivanpaulovich/clean-architecture-manga/wiki#explore-the-net-core-features) * [Learn from the open source community](https://github.com/ivanpaulovich/clean-architecture-manga/wiki#learn-from-the-open-source-community) - [Contributing](https://github.com/ivanpaulovich/clean-architecture-manga/wiki#contributing) ### [Use Cases](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Use-Cases) ### [Flow of Control](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Flow-of-Control) * [Register Flow of Control](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Flow-of-Control#register-flow-of-control) * [Get Customer Details Flow of Control](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Flow-of-Control#get-customer-details-flow-of-control) ### [Architecture Styles](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles) * [Hexagonal Architecture Style](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles#ports-and-adapters-architecture-style) * [Ports](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles#ports) * [Adapters](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles#adapters) * [The Left Side](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles#the-left-side) * [The Right Side](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles#the-right-side) * [Onion Architecture Style](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles#onion-architecture-style) * [Clean Architecture Style](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Architecture-Styles#clean-architecture-style) ### [Design Patterns](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns) * [Controller](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#controller) * [ViewModel](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#viewmodel) * [Presenter](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#presenter) * [Standard Output](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#standard-output) * [Error Output](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#error-output) * [Alternative Output](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#alternative-output) * [Unit of Work](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#unit-of-work) * [First-Class Collections](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#first-class-collections) * [Factory](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Design-Patterns#factory) ### [Domain-Driven Design Patterns](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Domain-Driven-Design-Patterns) * [Value Object](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Domain-Driven-Design-Patterns#value-object) * [Entity](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Domain-Driven-Design-Patterns#entity) * [Aggregate Root](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Domain-Driven-Design-Patterns#aggregate-root) * [Repository](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Domain-Driven-Design-Patterns#repository) * [Use Case](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Domain-Driven-Design-Patterns#use-case) ### [Separation of Concerns](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Separation-of-Concerns#separation-of-concerns) - [Domain](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Separation-of-Concerns#domain) - [Application](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Separation-of-Concerns#application) - [Infrastructure](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Separation-of-Concerns#infrastructure) - [User Interface](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Separation-of-Concerns#user-interface) ### [Encapsulation](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Encapsulation) ### [Test-Driven Development TDD](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Test-Driven-Development) ### [Fakes](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Fakes) ### [SOLID](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/SOLID) - [Single Responsibility Principle](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/SOLID#single-responsibility-principle) - [Open-Closed Principle](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/SOLID#open-closed-principle) - [Liskov Substitution Principle](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/SOLID#liskov-substitution-principle) - [Interface Segregation Principle](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/SOLID#interface-segregation-principle) - [Dependency Inversion Principle](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/SOLID#dependency-inversion-principle) ### [.NET Core Web API](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/.NET-Core-WebAPI#.net-core-webapi) * [Swagger and API Versioning](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/.NET-Core-WebAPI#swagger-and-api-versioning) * [Microsoft Extensions](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/.NET-Core-WebAPI#microsoft-extensions) * [Feature Flags](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/.NET-Core-WebAPI#feature-flags) * [Logging](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/.NET-Core-WebAPI#logging) * [Data Annotations](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/.NET-Core-WebAPI#data-annotations) * [Authentication](#authentication) * [Authorization](#authorization) ### [Entity Framework Core](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Entity-Framework-Core) * [Add Migration](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Entity-Framework-Core#add-migration) * [Update Database](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Entity-Framework-Core#update-database) ### [Environment Configurations](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Environment-Configurations) ### [DevOps](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/DevOps) * [Running the Application Locally](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/DevOps#running-the-application-locally) * [Running the Tests Locally](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/DevOps#running-the-tests-locally) * [Continuous Integration & Continuous Deployment](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/DevOps#continuous-integration-continuous-deployment) ### [Docker](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Docker) * [SQL Server](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Docker#sql-server) ### [Related Content and Projects](https://github.com/ivanpaulovich/clean-architecture-manga/wiki/Related-Content-and-Projects) ## Contributors ✨ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): | [**Ivan Paulovich**](https://paulovich.net)[🎨](#design-ivanpaulovich) [⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=ivanpaulovich) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=ivanpaulovich) | [**Petr Sedláček**](https://spelos.net/)[⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=petrspelos) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=petrspelos) | [**Gus**](https://github.com/luizgustavogp)[🎨](#design-luizgustavogp) [⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=luizgustavogp) | [**arulconsultant**](https://github.com/arulconsultant)[⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=arulconsultant) | [**Guilherme Silva**](https://github.com/guilhermeps)[🎨](#design-guilhermeps) [⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=guilhermeps) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=guilhermeps) | | --- | --- | --- | --- | --- | | [**Ondřej Štorc**](https://github.com/ostorc)[🎨](#design-ostorc) [⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=ostorc) | [**Marlon Miranda da Silva**](https://github.com/MarlonMiranda)[🎨](#design-MarlonMiranda) [⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=MarlonMiranda) | [**NicoCG**](https://github.com/NicoCG)[⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=NicoCG) | [**Filipe Augusto Lima de Souza**](https://stackoverflow.com/users/2072198/fals)[🎨](#design-fals) [⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=fals) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=fals) | [**sshaw-sml**](https://github.com/sshaw-sml)[⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=sshaw-sml) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=sshaw-sml) | | [**Matheus Neder**](https://github.com/matheusneder)[⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=matheusneder) | [**димитрий матиенко**](https://github.com/matiienkodimitri)[🎨](#design-matiienkodimitri) [⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=matiienkodimitri) | [**morphlogic**](https://github.com/morphlogic)[⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=morphlogic) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=morphlogic) | [**Felipe Lambert**](https://github.com/felpasl)[⚠️](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=felpasl) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=felpasl) | [**Philippe Matray**](https://matray.website)[🎨](#design-phmatray) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=phmatray) | | [**Leandro Fagundes**](https://github.com/leandrofagundes)[💬](#question-leandrofagundes) | [**Bart van Ommen**](https://github.com/bommen)[🤔](#ideas-bommen) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=bommen) | [**qpippop**](https://github.com/qpippop)[🤔](#ideas-qpippop) | [**Cesar Pereira**](https://www.linkedin.com/in/cesinhaugusto/)[💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=cesinhaugusto) | [**Edvaldo Farias**](http://www.edvaldofarias.com.br)[💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=edvaldofarias) | | [**Sergio Broccardi**](https://codepen.io/sergiobroccardi/posts/published/)[💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=sbroccardi) | [**cuno92**](https://github.com/cuno92)[💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=cuno92) | [**Vinícius Mamoré**](http://vmamore.com.br)[💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=vmamore) | [**dyavolick**](https://github.com/dyavolick)[💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=dyavolick) | [**felipetofoli**](https://github.com/felipetofoli)[🎨](#design-felipetofoli) [💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=felipetofoli) | | [**Charith De Silva**](https://github.com/charithdesilva)[💻](https://github.com/ivanpaulovich/clean-architecture-manga/commits?author=charithdesilva) | | | | | This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! > Hit the `FORK` button and show Clean Architecture on your profile. --- ## File: identity-server/wwwroot/lib/jquery/README.md # jQuery > jQuery is a fast, small, and feature-rich JavaScript library. For information on how to get started and how to use jQuery, please see [jQuery's documentation](http://api.jquery.com/). For source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery). If upgrading, please see the [blog post for 3.5.0](https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/). This includes notable differences from the previous version and a more readable changelog. ## Including jQuery Below are some of the most common ways to include jQuery. ### Browser #### Script tag ```html ``` #### Babel [Babel](http://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively. ```js import $ from "jquery"; ``` #### Browserify/Webpack There are several ways to use [Browserify](http://browserify.org/) and [Webpack](https://webpack.github.io/). For more information on using these tools, please refer to the corresponding project's documention. In the script, including jQuery will usually look like this... ```js var $ = require( "jquery" ); ``` #### AMD (Asynchronous Module Definition) AMD is a module format built for the browser. For more information, we recommend [require.js' documentation](http://requirejs.org/docs/whyamd.html). ```js define( [ "jquery" ], function( $ ) { } ); ``` ### Node To include jQuery in [Node](nodejs.org), first install with npm. ```sh npm install jquery ``` For jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/tmpvar/jsdom). This can be useful for testing purposes. ```js const { JSDOM } = require( "jsdom" ); const { window } = new JSDOM( "" ); const $ = require( "jquery" )( window ); ``` --- ## File: identity-server/wwwroot/lib/bootstrap/README.md

Bootstrap

## Table of contents - [Quick start](#quick-start) - [Status](#status) - [What's included](#whats-included) - [Bugs and feature requests](#bugs-and-feature-requests) - [Documentation](#documentation) - [Contributing](#contributing) - [Community](#community) - [Versioning](#versioning) - [Creators](#creators) - [Thanks](#thanks) - [Copyright and license](#copyright-and-license) ## Quick start Several quick start options are available: - [Download the latest release.](https://github.com/twbs/bootstrap/archive/v4.4.1.zip) - Clone the repo: `git clone https://github.com/twbs/bootstrap.git` - Install with [npm](https://www.npmjs.com/): `npm install bootstrap` - Install with [yarn](https://yarnpkg.com/): `yarn add bootstrap@4.4.1` - Install with [Composer](https://getcomposer.org/): `composer require twbs/bootstrap:4.4.1` - Install with [NuGet](https://www.nuget.org/): CSS: `Install-Package bootstrap` Sass: `Install-Package bootstrap.sass` Read the [Getting started page](https://getbootstrap.com/docs/4.4/getting-started/introduction/) for information on the framework contents, templates and examples, and more. ## Status [](https://bootstrap-slack.herokuapp.com/) [](https://github.com/twbs/bootstrap/actions?workflow=Tests) [](https://www.npmjs.com/package/bootstrap) [](https://rubygems.org/gems/bootstrap) [](https://atmospherejs.com/twbs/bootstrap) [](https://packagist.org/packages/twbs/bootstrap) [](https://www.nuget.org/packages/bootstrap/absoluteLatest) [](https://david-dm.org/twbs/bootstrap?type=peer) [](https://david-dm.org/twbs/bootstrap?type=dev) [](https://coveralls.io/github/twbs/bootstrap?branch=v4-dev) [](https://github.com/twbs/bootstrap/tree/v4-dev/dist/css/bootstrap.min.css) [](https://github.com/twbs/bootstrap/tree/v4-dev/dist/js/bootstrap.min.js) [](https://www.browserstack.com/automate/public-build/SkxZcStBeExEdVJqQ2hWYnlWckpkNmNEY213SFp6WHFETWk2bGFuY3pCbz0tLXhqbHJsVlZhQnRBdEpod3NLSDMzaHc9PQ==--3d0b75245708616eb93113221beece33e680b229) [](#backers) [](#sponsors) ## What's included Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this: ```text bootstrap/ └── dist/ ├── css/ │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map └── js/ ├── bootstrap.bundle.js ├── bootstrap.bundle.js.map ├── bootstrap.bundle.min.js ├── bootstrap.bundle.min.js.map ├── bootstrap.js ├── bootstrap.js.map ├── bootstrap.min.js └── bootstrap.min.js.map ``` We provide compiled CSS and JS (`bootstrap.*`), as well as compiled and minified CSS and JS (`bootstrap.min.*`). [source maps](https://developers.google.com/web/tools/chrome-devtools/javascript/source-maps) (`bootstrap.*.map`) are available for use with certain browsers' developer tools. Bundled JS files (`bootstrap.bundle.js` and minified `bootstrap.bundle.min.js`) include [Popper](https://popper.js.org/), but not [jQuery](https://jquery.com/). ## Bugs and feature requests Have a bug or a feature request? Please first read the [issue guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#using-the-issue-tracker) and search for existing and closed issues. If your problem or idea is not addressed yet, [please open a new issue](https://github.com/twbs/bootstrap/issues/new). ## Documentation Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](https://jekyllrb.com/) and publicly hosted on GitHub Pages at . The docs may also be run locally. Documentation search is powered by [Algolia's DocSearch](https://community.algolia.com/docsearch/). Working on our search? Be sure to set `debug: true` in `site/docs/4.4/assets/js/src/search.js` file. ### Running documentation locally 1. Run through the [tooling setup](https://getbootstrap.com/docs/4.4/getting-started/build-tools/#tooling-setup) to install Jekyll (the site builder) and other Ruby dependencies with `bundle install`. 2. Run `npm install` to install Node.js dependencies. 3. Run `npm start` to compile CSS and JavaScript files, generate our docs, and watch for changes. 4. Open `http://localhost:9001` in your browser, and voilà. Learn more about using Jekyll by reading its [documentation](https://jekyllrb.com/docs/). ### Documentation for previous releases You can find all our previous releases docs on . [Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download. ## Contributing Please read through our [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development. Moreover, if your pull request contains JavaScript patches or features, you must include [relevant unit tests](https://github.com/twbs/bootstrap/tree/master/js/tests). All HTML and CSS should conform to the [Code Guide](https://github.com/mdo/code-guide), maintained by [Mark Otto](https://github.com/mdo). Editor preferences are available in the [editor config](https://github.com/twbs/bootstrap/blob/master/.editorconfig) for easy use in common text editors. Read more and download plugins at . ## Community Get updates on Bootstrap's development and chat with the project maintainers and community members. - Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap). - Read and subscribe to [The Official Bootstrap Blog](https://blog.getbootstrap.com/). - Join [the official Slack room](https://bootstrap-slack.herokuapp.com/). - Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel. - Implementation help may be found at Stack Overflow (tagged [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4)). - Developers should use the keyword `bootstrap` on packages which modify or add to the functionality of Bootstrap when distributing through [npm](https://www.npmjs.com/browse/keyword/bootstrap) or similar delivery mechanisms for maximum discoverability. ## Versioning For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](https://semver.org/). Sometimes we screw up, but we adhere to those rules whenever possible. See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com/) contain summaries of the most noteworthy changes made in each release. ## Creators **Mark Otto** - - **Jacob Thornton** - - ## Thanks Thanks to [BrowserStack](https://www.browserstack.com/) for providing the infrastructure that allows us to test in real browsers! ## Backers Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/bootstrap#backer)] [](https://opencollective.com/bootstrap#backers) ## Sponsors Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/bootstrap#sponsor)] [](https://opencollective.com/bootstrap/sponsor/0/website) [](https://opencollective.com/bootstrap/sponsor/1/website) [](https://opencollective.com/bootstrap/sponsor/2/website) [](https://opencollective.com/bootstrap/sponsor/3/website) [](https://opencollective.com/bootstrap/sponsor/4/website) [](https://opencollective.com/bootstrap/sponsor/5/website) [](https://opencollective.com/bootstrap/sponsor/6/website) [](https://opencollective.com/bootstrap/sponsor/7/website) [](https://opencollective.com/bootstrap/sponsor/8/website) [](https://opencollective.com/bootstrap/sponsor/9/website) ## Copyright and license Code and documentation copyright 2011-2019 the [Bootstrap Authors](https://github.com/twbs/bootstrap/graphs/contributors) and [Twitter, Inc.](https://twitter.com) Code released under the [MIT License](https://github.com/twbs/bootstrap/blob/master/LICENSE). Docs released under [Creative Commons](https://creativecommons.org/licenses/by/3.0/). --- ## File: wallet-spa/README.md This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). ## Available Scripts In the project directory, you can run: ### `npm start` Runs the app in the development mode. Open [http://localhost:3000](http://localhost:3000) to view it in the browser. The page will reload if you make edits. You will also see any lint errors in the console. ### `npm test` Launches the test runner in the interactive watch mode. See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. ### `npm run build` Builds the app for production to the `build` folder. It correctly bundles React in production mode and optimizes the build for the best performance. The build is minified and the filenames include the hashes. Your app is ready to be deployed! See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. ### `npm run eject` **Note: this is a one-way operation. Once you `eject`, you can’t go back!** If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. ## Learn More You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). To learn React, check out the [React documentation](https://reactjs.org/). ### Code Splitting This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting ### Analyzing the Bundle Size This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size ### Making a Progressive Web App This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app ### Advanced Configuration This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration ### Deployment This section has moved here: https://facebook.github.io/create-react-app/docs/deployment ### `npm run build` fails to minify This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify