Skip to content

Commit

Permalink
add PORT to env file
Browse files Browse the repository at this point in the history
  • Loading branch information
nuuxcode committed Dec 13, 2023
1 parent a796a42 commit 808ad2b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion admin/.env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# DEV
REACT_APP_API_URL=http://dev.bikehub.me/api/v1/
# REACT_APP_API_URL=http://dev.bikehub.me/api/v1/

# PROD
# REACT_APP_API_URL=http://dev.bikehub.me/api/v1

# LOCAL
REACT_APP_API_URL=http://localhost:3300/api/v1/
2 changes: 1 addition & 1 deletion admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "PORT=3001 react-scripts start",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
Expand Down
4 changes: 2 additions & 2 deletions admin/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ module.exports = {
colors: () => ({
white: "#ffffff",
lightPrimary: "#F4F7FE",
blueSecondary: "#4318FF",
brandLinear: "#868CFF",
blueSecondary: "#206A62",
brandLinear: "#50CDBA",
gray: {
50: "#f8f9fa",
100: "#edf2f7",
Expand Down

0 comments on commit 808ad2b

Please sign in to comment.