You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: add pre-commit config, type hints, badges, and lint codebase (#57)
* chore: add pre-commit config, type hints, badges, and lint codebase
- Add .pre-commit-config.yaml and pyproject.toml for Black and isort
- Add missing type hints throughout the code (Dict[...] for Python 3.8 compatibility)
- Added badges and convert existing badges to use <a><img></a> format
- Lint Markdown files
- Lint Jinja templates with djlint
* Resolve error and fix remaining type hint violations
* Fix absolute imports and mock paths in test_clone.py to resolve test failures.
* Replace deprecated 'dotenv' with 'python-dotenv' in requirements.txt to resolve installation errors.
docker run -d --name gitingest -p 8000:8000 gitingest
81
103
```
104
+
82
105
The application will be available at `http://localhost:8000`
83
106
Ensure environment variables are set before running the application or deploying it via Docker.
84
107
85
108
## ✔️ Contributing
86
109
87
-
Contributions are welcome!
110
+
Contributions are welcome!
88
111
89
112
Gitingest aims to be friendly for first time contributors, with a simple python and html codebase. If you need any help while working with the code, reach out to us on [discord](https://discord.com/invite/zerRaGK9EC)
90
113
91
-
### Ways to contribute
114
+
### Ways to contribute
92
115
93
116
1. Provide your feedback and ideas on discord
94
-
2. Open an Issue on github to report a bug
95
-
2. Create a Pull request
117
+
2. Open an Issue on github to report a bug
118
+
3. Create a Pull request
96
119
- Fork the repository
97
120
- Make your changes and test them locally
98
121
- Open a pull request for review and feedback
99
122
100
123
### 🔧 Local dev
101
124
102
-
#### Environment Configuration
125
+
#### Environment Configuration
126
+
103
127
-**`ALLOWED_HOSTS`**: Specify allowed hostnames for the application. Default: `"gitingest.com,*.gitingest.com,gitdigest.dev,localhost"`.
104
128
You can configure the application using the following environment variables:
Copy file name to clipboardExpand all lines: SECURITY.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,4 +2,4 @@
2
2
3
3
## Reporting a Vulnerability
4
4
5
-
If you have discovered a vulnerability inside the project, report it privately at romain@coderamp.io. This way the maintainer can work on a proper fix without disclosing the problem to the public before it has been solved.
5
+
If you have discovered a vulnerability inside the project, report it privately at <romain@coderamp.io>. This way the maintainer can work on a proper fix without disclosing the problem to the public before it has been solved.
0 commit comments