Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tika/the-wave-backend

HackUMass XII project
https://github.com/tika/the-wave-backend

Last synced: 8 days ago
JSON representation

HackUMass XII project

Awesome Lists containing this project

README

        

### Install Dependencies

You can install the required Python dependencies using `pip` and the `requirements.txt` file.

1. Create a virtual environment (optional but recommended):

```bash
python3 -m venv venv
```

2. Activate the virtual environment:

- On macOS/Linux:
```bash
source venv/bin/activate
```

3. Install the dependencies:

```bash
pip install -r requirements.txt
```

### Setup MongoDB

#### **Option 1: Using Local MongoDB**

To use a local MongoDB instance, ensure you have MongoDB installed on your machine. You can follow the installation steps here: [MongoDB Installation Guide](https://www.mongodb.com/docs/manual/installation/).

Once MongoDB is installed, you can start it by running:

```bash
mongosh
```