Atmoify is a web application that allows users to create their perfect atmospheric environment for working, studying, or relaxing. It combines audio tracks, ambient sound effects, and focus/sleep timers to enhance productivity and relaxation.
- Add YouTube audio tracks
- Toggle various ambient sound effects
- Mix and adjust volumes for all audio sources
- Set focus and sleep timers
- Save and load custom sound profiles
- Docker
- Docker Compose
- Create a
compose.yamlfile with the following content:
version: '3.9'
services:
app:
image: ghcr.io/bluegoosemedia/atmoify
ports:
- "3000:3000"
environment:
- NODE_ENV=production- Run
docker-compose up -dto start the container.
