-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed seeding bug where users friended themselves
- Loading branch information
1 parent
8af531b
commit 7ab2b36
Showing
4 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
# Database Connection URL | ||
# Rename this file to .env | ||
|
||
# Enter the URL for your PostgreSQL database connection. | ||
# Example: DATABASE=postgresql://username:password@localhost/db_name | ||
DATABASE= | ||
|
||
# Enter the URL for your frontend. | ||
FRONTEND_URL= | ||
|
||
# Enter prod for production and dev for development | ||
# Enter prod for production and dev for development. | ||
DEVELOPMENT= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Instructions for Starting Express Backend | ||
|
||
- Follow instructions in .env.template and rename to .env | ||
- Follow instructions in .env.template | ||
- OPTIONAL: Run node seed.js in terminal | ||
- Run npm install in terminal | ||
- Run npm run start in terminal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Instructions for Starting React Frontend | ||
|
||
- Follow instructions in .env.template and rename to .env | ||
- Follow instructions in .env.template | ||
- Run npm install in terminal | ||
- Run npm run dev in terminal |