Issues marked triage approved
are a good place to start.
You can also check the help wanted
tag to find other issues to help with.
If you're interested in working on a fix, leave a comment to let everyone know and to help avoid duplicated effort from others.
- DO make sure your issue exists before submitting a new one. Your issue might be closed if it's a duplicate.
- DO write a good description for your pull request. More detail is better. Describe why the change is being made and why you have chosen a particular solution. Describe any manual testing you performed to validate your change.
- DO check for additional occurrences of the same problem in other parts of the codebase before submitting your PR.
- DO NOT submit a PR unless it is linked to an Issue marked triage approved. This enables us to have a discussion on the idea before anyone invests time in an implementation.
- DO NOT merge multiple changes into one PR unless they have the same root cause.
- DO NOT submit pure formatting/typo changes to code that has not been modified otherwise.
- Requires at least version 1809 (build 17763) to run.
- Visual Studio 2019 or later, with Windows 11 SDK for UWP (build 22000)
- Clone the project, this can be done by running
git clone https://github.com/itsWindows11/Carpeddit.git
in your favourite terminal. - Launch
Carpeddit.sln
(the solution file). - Create a reddit API app by clicking on this link, scrolling down until you find the "Create application" or "Create another application button". Set the name to
Carpeddit
, the redirect URL tohttp://127.0.0.1:3000/reddit-callback
and the type toweb app
and click on "create app". Copy the client ID and secret for use in the next step. - Modify the ApiConstants.cs file to include the following, and put the client ID and secret in their respective properties:
namespace Carpeddit.Common.Constants { public static class APIConstants { public const string ClientId = "INSERT_CLIENT_ID"; public const string ClientSecret = "INSERT_CLIENT_SECRET"; public const string RedirectUri = "https://itswin11.netlify.app/apps/carpeddit/auth"; } }
- Press F5 or the run button.