Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update .gitignore to ignore virtual environment folder #84

Merged
merged 4 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ __pycache__/

# My virtual environment
myenv
/myenv
/myenv
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,16 @@ To create a seamless, user-friendly application that allows users to control mul
### Setting Up Your Environment 🛠️

1. **Clone the repository:**

```bash
git clone https://github.com/user-name/Jarvis.git
cd Jarvis
```

2. **Create a virtual environment:**

```bash
python -m venv env
python -m venv myenv
source env/bin/activate # On Windows, use `env\Scripts\activate`
```

Expand All @@ -48,6 +50,7 @@ To create a seamless, user-friendly application that allows users to control mul
### Running the Application 🎯

1. **Start the application:**

```bash
streamlit run Jarvis.py
```
Expand All @@ -59,7 +62,7 @@ To create a seamless, user-friendly application that allows users to control mul

- **User Roles:** The application supports multiple roles (User, Admin, Super Admin), each with specific access to services.
- **Login Credentials:** Ensure you have your ID and password ready for authentication.
- **For Testing/Developing Purpose:**
- **For Testing/Developing Purpose:**
- **User:**
- **ID:** [email protected]
- **Password:** user_Password
Expand All @@ -73,6 +76,7 @@ To create a seamless, user-friendly application that allows users to control mul
## :zap: Roadmap 🛣️

1. **Phase 1:**

- Implement basic voice command functionality.
- Develop a user-friendly interface.
- Integrate basic customer support features.
Expand Down