https://github.com/aaroncohen21/echochamber
Your personal media streaming service that can be deployed anywhere!
https://github.com/aaroncohen21/echochamber
express media postgresql react streaming
Last synced: 3 months ago
JSON representation
Your personal media streaming service that can be deployed anywhere!
- Host: GitHub
- URL: https://github.com/aaroncohen21/echochamber
- Owner: AaronCohen21
- Created: 2023-10-01T22:24:39.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-30T05:49:38.000Z (over 2 years ago)
- Last Synced: 2025-10-11T07:46:24.582Z (9 months ago)
- Topics: express, media, postgresql, react, streaming
- Language: JavaScript
- Homepage:
- Size: 1.07 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project Echo Chamber
Your personal media streaming service that can be deployed anywhere!

## Dev: Getting Started
To get started writing code you must first build dev-database Docker Image. This can be done by running `yarn db:build`. With the Docker Image built a local development server can be booted up using `yarn dev`. This will let you modify code in both the client and server applications and have changes hot-reload.
**NOTE:** You only need to run `yarn db:build` once unless you make any changes to the dev-database Docker Image.
### Windows Only
`yarn db:build` isn't very windows freindly since it exports db credentials from the `.env` file. If you want to build the Docker Image in a non \*NIX CLI run the following command and make sure all values match what you have set in your `.env` file.
```
docker build --build-arg POSTGRES_USER= --build-arg POSTGRES_PASSWORD= --build-arg POSTGRES_DB= -t echochamber-db . && docker volume create echochamber_db-data-dev
```