Skip to content

Commit

Permalink
Removed DEV prefixes to env vars as per request
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaniza authored Sep 29, 2021
1 parent ab979c8 commit b706d83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ Connection to MongoDB is handled through the Mongoose DRM. You can either connec

If running locally, your `.env.local` will contain something like:
```
DEV_MONGODB_URI=mongodb://localhost:27017/bountyboard
MONGODB_URI=mongodb://localhost:27017/bountyboard
```
If connecting to a remote mongo server, your connection string will be in the format:
```
DEV_MONGODB_URI=mongodb://username:password@host:port/bountyboard
MONGODB_URI=mongodb://username:password@host:port/bountyboard
```
Please refer to [the Mongoose docs](https://mongoosejs.com/docs/connections.html) for more information.

Expand All @@ -132,4 +132,4 @@ $ mongoimport\
```
If you've made it this far, the application should run and should be showing a bounty on the main screen. You can directly query the API backend through the app at `localhost:3000/api/bounties`
### Setting Up the Discord Webhook
The `DEV_DEV_DISCORD_BOUNTY_BOARD_WEBHOOK` is not required to start the app, but can be fetched from a member of the bounty board development team. Add it to your `.env.local` file once you have it.
The `DISCORD_BOUNTY_BOARD_WEBHOOK` is not required to start the app, but can be fetched from a member of the bounty board development team. Add it to your `.env.local` file once you have it.

0 comments on commit b706d83

Please sign in to comment.