Skip to content

Commit

Permalink
Merge pull request #907 from lfglabs-dev/testnet
Browse files Browse the repository at this point in the history
MEP 25/10/24
  • Loading branch information
fricoben authored Nov 20, 2024
2 parents 350f0e4 + 10fb5f1 commit 4a8b1ed
Show file tree
Hide file tree
Showing 54 changed files with 5,146 additions and 4,634 deletions.
40 changes: 0 additions & 40 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/contributor-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
name: Contributor Issue
about: Create an issue for it to be taken by a contributor
title: Name your issue
labels: Good first issue, OD Hack, open for contribution
assignees: ''

---

## Description 📹

**[Insert clear description here]**

## Proposed Actions 🛠️

Here’s a checklist of actions to follow for resolving this issue:

1. **Fork and Create Branch**:
Fork the repository and create a new branch using the issue number:
```bash
git checkout -b fix-[issue-number]
```

2. **Implement Changes**:
[Insert Code snippet if needed with a mardown todo list]

3. **Run Tests and Commit Changes**:
Make sure your changes don't break existing functionality and commit with a clear message:
```bash
git commit -m "Fix: [Short description of the fix]"
```

## Required 📋

To keep our workflow smooth, please make sure you follow these guidelines:

- **Assignment**: Don't create a pull request if you weren’t assigned to this issue.
- **Timeframe**: Complete the task within **3 business days**.
- **Closing the Issue**: In your PR description, close the issue by writing `Close #[issue_id]`.
- **Review Process**:
- Once you've submitted your PR, change the label to **"ready for review"**.
- If changes are requested, address them and then update the label back to **"ready for review"** once done.
- **Testing**: Test your PR locally before pushing, and verify that tests and build are working after pushing.

Thank you for your contribution 🙏

⚠️ WARNING: Failure to follow the requirements above may result in being added to the OnlyDust blacklist, affecting your ability to receive future rewards.
19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Leading quests platform on Starknet to onboard your next million users. We provide a platform for users to discover new apps and for companies to pitch your products and new features to users and get user feedback.

[![Pull Requests welcome](https://img.shields.io/badge/PRs-welcome-ff69b4.svg?style=flat-square)](https://github.com/starknet-id/starknet.quest/issues?q=is:issue+is:open+label:%22open+for+contribution%22)
[![Pull Requests welcome](https://img.shields.io/badge/PRs-welcome-ff69b4.svg?style=flat-square)](https://github.com/lfglabs-dev/starknet.quest/pulls)

## About

Expand Down Expand Up @@ -49,6 +49,17 @@ npm i
npm run dev
```

If you encounter installation issues, try these steps:

* Clear npm cache: `npm cache clean --force`
* Delete node_modules: `rm -rf node_modules`
* Delete package-lock.json: `rm package-lock.json`
* Retry installation: `npm i`

If issues persist, you can try `npm i --legacy-peer-deps` or `npm i --force` as a last resort.

Note that using these flags may lead to dependency conflicts.

You should see something like this:

```sh
Expand Down Expand Up @@ -100,4 +111,4 @@ Thanks go to these wonderful people:
<!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification.
Contributions of any kind welcome!
Contributions of any kind welcome!
Loading

0 comments on commit 4a8b1ed

Please sign in to comment.