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
Copy file name to clipboardExpand all lines: docs/dev_setup.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ The first thing that is recommended is setting `APP_DEBUG` to `1` if you are run
37
37
The second step is setting our `DATABASE_URL`. It has a specific structure: `postgres://{username}:{password}@{db_host}/{database}`. In our case, after completing it with our data, the URL becomes: `postgres://geode:geode@localhost/geode`.
38
38
39
39
> [!TIP]
40
-
> You can get away with setting this up by manually adding developers to the database. Just add columns to `developers` and `auth_tokens` manually, while keeping in mind tokens in the database are sha256'd uuid tokens.
40
+
> You can get away with setting this up by manually adding developers to the database. Just add rows to `developers` and `auth_tokens` manually, while keeping in mind tokens in the database are sha256'd uuid tokens.
41
41
42
42
Third, we need to setup a local GitHub OAuth app. Since the index doesn't store passwords, and uses GitHub for logins, we need this step to login into the index. Check out this guide for [creating a GitHub OAuth app](https://docs.github.com/en/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app), then fill in the client ID and secret of your app inside the .env file.
0 commit comments