Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.next
node_modules
.env*
.env*
coverage/
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ build:

node:
docker compose run --rm $(SERVICE_NAME) $(cmd)

test:
docker compose run --rm $(SERVICE_NAME) npm test

test-coverage:
docker compose run --rm $(SERVICE_NAME) npm test -- --coverage
48 changes: 48 additions & 0 deletions README.fr.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
![Opire Logo](./public/big_logo.png)

<p align="center">
<a href="https://github.com/Opire/docs" target="_blank">
<img src="https://img.shields.io/github/last-commit/Opire/docs" alt="Last Commit">
</a>
<a href="https://github.com/Opire/docs/stargazers" target="_blank">
<img src="https://img.shields.io/github/stars/Opire/docs" alt="GitHub Stars">
</a>
<a href="https://github.com/Opire/docs/issues" target="_blank">
<img src="https://img.shields.io/github/issues/Opire/docs" alt="GitHub Issues">
</a>
<a href="https://github.com/Opire/docs/graphs/contributors" target="_blank">
<img src="https://img.shields.io/github/contributors/Opire/docs" alt="Contributors">
</a>
</p>

This project is the official documentation for [Opire](https://opire.dev).

Opire est une **rewards platform for software developers**. Avec Opire, anyone can create rewards for open-source projects and grow their community, while developers can solve issues and earn the associated rewards.

## 🌍 Community

<div align="center">
<a href="https://discord.gg/Rfq8CMZH4b" target="_blank">
<img src="./public/rrss_logos/discord.png" alt="Discord logo" style="width: 10%">
</a>
<a href="https://www.reddit.com/r/opire" target="_blank">
<img src="./public/rrss_logos/reddit.svg" alt="Reddit logo" style="width: 10%">
</a>
<a href="https://twitter.com/opire_dev" target="_blank">
<img src="./public/rrss_logos/twitter-x.png" alt="Twitter logo" style="width: 10%">
</a>
<a href="https://www.threads.net/@opiredev" target="_blank">
<img src="./public/rrss_logos/threads.png" alt="Threads logo" style="width: 10%">
</a>
<a href="https://www.linkedin.com/company/opire" target="_blank">
<img src="./public/rrss_logos/linkedIn.png" alt="LinkedIn logo" style="width: 10%">
</a>
</div>

## 🧑‍💻 Contributing

To help us to improve the documentation see the [CONTRIBUTING](https://github.com/Opire/docs/blob/main/CONTRIBUTING)

## 📃 License

This project is licensed under the MIT license. For more details, see the [LICENSE](https://github.com/Opire/docs/blob/main/LICENSE).
5 changes: 5 additions & 0 deletions __tests__/basic.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
describe('basic test', () => {
test('should pass', () => {
expect(true).toBe(true);
});
});
15 changes: 15 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
roots: ['<rootDir>/__tests__', '<rootDir>/pages'],
testMatch: ['**/__tests__/**/*.test.[jt]s?(x)', '**/?(*.)+(spec|test).[tj]s?(x)'],
collectCoverageFrom: [
'**/*.{ts,tsx}',
'!**/node_modules/**',
'!**/vendor/**',
'!**/__tests__/**',
'!**/*.d.ts',
],
coverageDirectory: 'coverage',
coverageReporters: ['json', 'lcov', 'text', 'clover'],
};
Loading