https://github.com/chmodshubham/sourcegraph
Sourcegraph makes it easy to read, write, and fix code—even in big, complex codebases.
https://github.com/chmodshubham/sourcegraph
intelligence sourcegraph
Last synced: 4 months ago
JSON representation
Sourcegraph makes it easy to read, write, and fix code—even in big, complex codebases.
- Host: GitHub
- URL: https://github.com/chmodshubham/sourcegraph
- Owner: chmodshubham
- Created: 2023-04-13T23:15:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-13T23:20:22.000Z (almost 3 years ago)
- Last Synced: 2024-04-16T04:13:17.062Z (almost 2 years ago)
- Topics: intelligence, sourcegraph
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sourcegraph
Sourcegraph makes it easy to read, write, and fix code—even in big, complex codebases.
- Code search: Search all of your repositories across all branches and all code hosts.
- Code intelligence: Navigate code, find references, see code owners, trace history, and more.
- Fix and refactor: Roll out large-scale changes to many repositories at once and track big migrations.
## Install
Install from the [Official Site](https://docs.sourcegraph.com/cli/explanations/versioning#installation-linux). **OR**
### Script installation(Recommendation)
```
git clone https://github.com/ShubhamKumar89/sourcegraph
cd sourcegraph/
chmod 777 sourcegraph
./sourcegraph
```
Opens at [localhost:3080](http://localhost:3080/).
## Github Template(Basic)
```
{
"url": "https://github.com",
"token": "",
"orgs": ["organisation"],
"repos": [
"organisation/repository"
]
}
```
** Example**
```
{
"url": "https://github.com",
"token": "ACCESS_TOKEN",
"orgs": ["kubernetes"],
"repos": [
"kubernetes/kubernetes"
]
}
```
`repos` - A list of repositories in owner/name format. The order determines the order in which we sync repository metadata and is safe to change.
`orgs` - A list of organizations (every repository belonging to the organization will be cloned).