Skip to content

Onboarding issues I noticed #105211

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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
10 changes: 8 additions & 2 deletions contribute/developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,13 @@ Next, we'll explain how to build and run the web server that serves these fronte

### Backend

Build and run the backend by running `make run` in the root directory of the repository. This command compiles the Go source code and starts a web server.
Build and run the backend by running

```
make run
```

in the root directory of the repository. This command compiles the Go source code and starts a web server.

> **Troubleshooting:** Are you having problems with [too many open files](#troubleshooting)?

Expand Down Expand Up @@ -336,7 +342,7 @@ ulimit -a
To change the number of open files allowed, run:

```
ulimit -S -n 4096
ulimit -S -n 8000
```

The number of files needed may be different on your environment. To determine the number of open files needed by `make run`, run:
Expand Down
2 changes: 1 addition & 1 deletion devenv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To remove the setup developer dashboards and data sources
./setup.sh undev
```

After restarting the Grafana server, there should be a number of data sources named `gdev-<type>` provisioned as well as
After restarting the Grafana server (`make run`), there should be a number of data sources named `gdev-<type>` provisioned as well as
a dashboard folder named `gdev dashboards`. This folder contains dashboard and panel features tests dashboards.

Please update these dashboards or make new ones as new panels and dashboards features are developed or new bugs are
Expand Down
Loading