D2ArmorPicker is a small tool to min-max your armor stats with only a few clicks. Visit the page here: https://d2armorpicker.com
- Run
npx husky-init && npm install
to install dependencies. - Duplicate the
.env_example
to.env_dev
. - Create a Bungie API key. For this, head over to https://www.bungie.net/en/Application and create a new application.
- Set the OAuth Client Type to
Confidential
and the redirect URL tohttps://localhost:4200/
. - Select the Scopes
Read your Destiny 2 information
andMove or equip Destiny gear and other items
. - Set
Origin Header
tohttps://localhost:4200
. - Copy the API key and paste it to
D2AP_BUNGIE_API_KEY
in the.env_dev
file. - Copy the OAuth client_id and paste it to
D2AP_BUNGIE_CLIENT_ID
in the.env_dev
file. - Copy the OAuth client_secrety and paste it to
D2AP_BUNGIE_CLIENT_SECRET
in the.env_dev
file.
- Set the OAuth Client Type to
- Start the development server with
npm start
(ornpm run start
). The server will be available at https://localhost:4200/. This page will automatically update whenever you change anything in the code.- Ignore the "invalid certificate" error your browser will show you. You need HTTPS to be able to use the Bungie Authentification.
- Copy
.env_dev
to.env
and/or.env_beta
. - To build a production package, set the environment flag
PRODUCTION=1
. - To build a beta package, set the environment flag
BETA=1
.
Then you can use npm run build
.
You can also deploy the page to a "github pages" page. Please note that I strongly discourage hosting alternative D2AP installations, let's make this one as awesome as possible.
- Set the environment flag
BETA=1
orPRODUCTION=1
. - Modify the
deploy
script inpackage.json
and remove--base-href=/ --cname=d2armorpicker.com
. The same for the beta command. If you deploy toyourname.github.io/fancyrepo
, then you may have to set--base-href=/fancyrepo
. npm run deploy
(given you forked the repository first).
- We use husky to execute some commit hooks.
- We use eslint to make sure we have the same code style.
- We use prettier to make sure we have the same code formatting.
- We are using commitlint to make sure we all have the same commit structure. The template used is @commitlint/config-angular.
Thanks goes to these wonderful people (emoji key):
Mijago 💻 🤔 🚇 |
TheYeshir 📆 🤔 👀 📓 💬 |
Mojo 📆 🤔 📓 💬 |
Ben Hollis 💻 |
|||
Add your contributions |
This project follows the all-contributors specification. Contributions of any kind welcome!
Copyright (c) Mijago 2023.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.