Skip to content
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
File renamed without changes.
File renamed without changes.
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,21 @@
- SQL Server or your chosen database system
- IDEs: Visual Studio, Rider

### Setup Instructions
### Application Setup with Docker

1. **Clone the repository**:
```bash
git clone https://github.com/RizzyApp/rizzy.git
cd rizzy
```
2. **Docker setup**:
- Run the docker-compose.yml file in the terminal with the `docker compose up` command to create the application in Docker.
- Docker compose runs the entire server, frontend and database.

3. **Access the app**:
Open your browser and navigate to `http://localhost:3000`.

### Native Application Setup

1. **Clone the repository**:
```bash
Expand All @@ -71,11 +85,7 @@
dotnet run
```

3. **Docker setup**:
- Add docker to your services
- Run the docker-compose.yml file to create the database in Docker.

4. **Frontend setup**:
3. **Frontend setup**:
- Navigate to the frontend folder:
```bash
cd .\client\
Expand All @@ -89,7 +99,7 @@
npm run dev
```

5. **Access the app**:
4. **Access the app**:
Open your browser and navigate to `http://localhost:5276`.

---
Expand Down
Empty file.
Binary file removed client/public/image/bean-1.jpg
Binary file not shown.
Binary file removed client/public/image/bean-2.jpg
Binary file not shown.
Binary file removed client/public/image/bean-3.jpg
Binary file not shown.
Binary file removed client/public/image/bean-4.jpg
Binary file not shown.
2 changes: 1 addition & 1 deletion client/src/components/chat/ChatSideBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const ChatSideBar = ({setSelectedUser, users}) => {
onChange={(e) => setSearchQuery(e.target.value)}
/>
</div>
<div className="overflow-scroll">
<div className="overflow-hidden">
{filteredUsers.length > 0 ? (
<ul>
{filteredUsers.map((user, index) => (
Expand Down
2 changes: 1 addition & 1 deletion server/API/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
"ValidIssuer": "apiWithAuthBackend",
"ValidAudience": "apiWithAuthBackend",
"IssuerSigningKey": "!SomethingSecret!!SomethingSecret!"
},
}
}
Loading