Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tika/the-wave-backend
- Owner: tika
- Created: 2024-11-09T02:40:11.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-10T03:16:57.000Z (about 2 months ago)
- Last Synced: 2024-11-10T03:24:50.337Z (about 2 months ago)
- Language: Python
- Size: 729 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```