diff --git a/README.md b/README.md index ff3f851..d087b1e 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,13 @@ WorkLink is a web-based marketplace that connects customers with skilled, semi-s --- +## Live Demo + +🌐 Application URL: +https://worklink-frontend-9as1.onrender.com + +--- + ## Features ### Customer @@ -95,7 +102,7 @@ npm start ```bash cd backend npm install -npm start +npm run dev ``` --- @@ -152,4 +159,4 @@ GROQ_API_KEY= ## License -This project is developed for academic purposes as part of the B.Tech Computer Science and Engineering curriculum. \ No newline at end of file +This project is developed for academic purposes as part of the B.Tech Computer Science and Engineering curriculum. diff --git a/backend/.env b/backend/.env new file mode 100644 index 0000000..da50fb8 --- /dev/null +++ b/backend/.env @@ -0,0 +1,11 @@ +-----paste content here----- + +PORT= +DB_USER= +DB_HOST= +DB_NAME= +DB_PASSWORD= +DB_PORT= +JWT_SECRET= + +GROQ_API_KEY=---paste API key here--- diff --git a/frontend/.env b/frontend/.env new file mode 100644 index 0000000..79a5ce1 --- /dev/null +++ b/frontend/.env @@ -0,0 +1 @@ +REACT_APP_GROQ_API_KEY= -----paste content here------- diff --git a/frontend/src/pages/Profile/CustomerProfile.js b/frontend/src/pages/Profile/CustomerProfile.js index 90880ec..c86ba38 100644 --- a/frontend/src/pages/Profile/CustomerProfile.js +++ b/frontend/src/pages/Profile/CustomerProfile.js @@ -457,4 +457,5 @@ const styles = { }, }; -export default CustomerProfile; \ No newline at end of file + +export default CustomerProfile;