Skip to content

Commit 33ed261

Browse files
committed
🎉(init) init dictaphone app from meet code
A lot of code, but most of it comes from meet repo.
1 parent 64e8ff9 commit 33ed261

223 files changed

Lines changed: 33355 additions & 2 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Python
2+
__pycache__
3+
*.pyc
4+
**/__pycache__
5+
**/*.pyc
6+
venv
7+
.venv
8+
9+
# System-specific files
10+
.DS_Store
11+
**/.DS_Store
12+
13+
# Docker
14+
docker compose.*
15+
env.d
16+
17+
# Docs
18+
docs
19+
*.md
20+
*.log
21+
22+
# Development/test cache & configurations
23+
data
24+
.cache
25+
.circleci
26+
.git
27+
.iml
28+
db.sqlite3
29+
.pylint.d
30+
31+
**/.idea
32+
**/.vscode
33+
**/.pytest_cache
34+
**/.mypy_cache
35+
**/.ruff_cache
36+
37+
# Frontend
38+
**/node_modules
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: 🐛 Bug Report
3+
about: If something is not working as expected 🤔.
4+
5+
---
6+
7+
## Bug Report
8+
9+
**Problematic behavior**
10+
A clear and concise description of the behavior.
11+
12+
**Expected behavior/code**
13+
A clear and concise description of what you expected to happen (or code).
14+
15+
**Steps to Reproduce**
16+
1. Do this...
17+
2. Then this...
18+
3. And then the bug happens!
19+
20+
**Environment**
21+
- Dictaphone version:
22+
- Platform:
23+
24+
**Possible Solution**
25+
<!--- Only if you have suggestions on a fix for the bug -->
26+
27+
**Additional context/Screenshots**
28+
Add any other context about the problem here. If applicable, add screenshots to help explain.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: ✨ Feature Request
3+
about: I have a suggestion (and may want to build it 💪)!
4+
5+
---
6+
7+
## Feature Request
8+
9+
**Is your feature request related to a problem or unsupported use case? Please describe.**
10+
A clear and concise description of what the problem is. For example: I need to do some task and I have an issue...
11+
12+
**Describe the solution you'd like**
13+
A clear and concise description of what you want to happen. Add any considered drawbacks.
14+
15+
**Describe alternatives you've considered**
16+
A clear and concise description of any alternative solutions or features you've considered.
17+
18+
**Discovery, Documentation, Adoption, Migration Strategy**
19+
If you can, explain how users will be able to use this and possibly write out a version the docs (if applicable).
20+
Maybe a screenshot or design?
21+
22+
**Do you want to work on it through a Pull Request?**
23+
<!-- Make sure to coordinate with us before you spend too much time working on an implementation! -->
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: 🤗 Support Question
3+
about: If you have a question 💬, or something was not clear from the docs!
4+
5+
---
6+
7+
<!-- ^ Click "Preview" for a nicer view! ^
8+
We primarily use GitHub as an issue tracker. If however you're encountering an issue not covered in the docs, we may be able to help! -->
9+
10+
---
11+
12+
Please make sure you have read our [main Readme](https://github.com/numerique-gouv/dictaphone).
13+
14+
Also make sure it was not already answered in [an open or close issue](https://github.com/numerique-gouv/dictaphone/issues).
15+
16+
If your question was not covered, and you feel like it should be, fire away! We'd love to improve our docs! 👌
17+
18+
**Topic**
19+
What's the general area of your question: for example, docker setup, database schema, search functionality,...
20+
21+
**Question**
22+
Try to be as specific as possible so we can help you as best we can. Please be patient 🙏

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## Purpose
2+
3+
Description...
4+
5+
6+
## Proposal
7+
8+
Description...
9+
10+
- [] item 1...
11+
- [] item 2...
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Download Crowdin translations
2+
3+
on:
4+
workflow_dispatch:
5+
types: [file-fully-translated]
6+
7+
permissions:
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
crowdin:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v6
17+
18+
- name: Download Crowdin files
19+
uses: crowdin/github-action@v2
20+
with:
21+
upload_sources: false
22+
upload_translations: false
23+
download_translations: true
24+
localization_branch_name: l10n_crowdin_translations
25+
create_pull_request: true
26+
pull_request_title: "New Crowdin translations"
27+
pull_request_body: "New Crowdin pull request with translations"
28+
pull_request_base_branch_name: "main"
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
32+
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
33+
CROWDIN_BASE_PATH: ${{ github.workspace }}

0 commit comments

Comments
 (0)