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
docker run -d --name gitingest -p 8000:8000 gitingest
76
81
```
77
82
The application will be available at `http://localhost:8000`
83
+
Ensure environment variables are set before running the application or deploying it via Docker.
78
84
79
-
### 🌐 Environment Configuration
80
-
81
-
You can configure the application using the following environment variables:
82
-
83
-
-**`ALLOWED_HOSTS`**: Specify allowed hostnames for the application. Default: `"gitingest.com,*.gitingest.com,gitdigest.dev,localhost"`.
84
-
85
-
Example:
85
+
## ✔️ Contributing
86
86
87
-
```bash
88
-
ALLOWED_HOSTS="gitingest.local,localhost"
89
-
```
87
+
Contributions are welcome!
90
88
91
-
Ensure these variables are set before running the application or deploying it via Docker.
89
+
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)
92
90
93
-
## ✔️ Contributions are welcome!
94
-
Create a pull request or open an Issue about anything you'd like to see in gitingest
91
+
### Ways to contribute
95
92
96
-
## 🔒 WIP
97
-
- Feedback/suggestions: Please open a github Issue or mail me: romain@coderamp.io
98
-
- Repository cloning is limited to public GitHub repositories only
99
-
- Too big repos will probably timeout (if longer than 20 secondes to clone)
93
+
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
96
+
- Fork the repository
97
+
- Make your changes and test them locally
98
+
- Open a pull request for review and feedback
100
99
100
+
### 🔧 Local dev
101
101
102
-
## Command Line Global Installation
102
+
#### Environment Configuration
103
+
-**`ALLOWED_HOSTS`**: Specify allowed hostnames for the application. Default: `"gitingest.com,*.gitingest.com,gitdigest.dev,localhost"`.
104
+
You can configure the application using the following environment variables:
103
105
104
106
```bash
105
-
pip install -e .
107
+
ALLOWED_HOSTS="gitingest.local,localhost"
106
108
```
107
109
108
-
## Command Line Usage
109
-
110
-
The `gitingest` command line tool allows you to analyze any directory and create a text dump of its contents.
The frontend will be available at `localhost:8000`
154
129
155
-
Files and directories that are commonly ignored (like `.git`, `node_modules`, cache directories, etc.) are automatically excluded. You can add additional patterns to ignore using the `-i` flag.
0 commit comments