Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dax-dot-gay/doesitwork

Web app for reporting functionality/non-functionality of community-maintained services (washing machines, microwaves, etc etc)
https://github.com/dax-dot-gay/doesitwork

Last synced: 6 days ago
JSON representation

Web app for reporting functionality/non-functionality of community-maintained services (washing machines, microwaves, etc etc)

Awesome Lists containing this project

README

        

# doesitwork
Web app for reporting functionality/non-functionality of community-maintained services (washing machines, microwaves, etc etc)

## Server Configuration
Basic configuration is done using environment variables or a .env file in the server root.

```
# MongoDB Config
MONGO_HOST=
MONGO_PORT=
MONGO_USER=
MONGO_PASS=
MONGO_TLS=
MONGO_DATABASE=

# Root user initial setup
ROOT_USER=
ROOT_PASS=

# Customization
CUSTOM_ORG=
CUSTOM_BRAND=
```

## Deploying On Container Platform

Use the following image: `ghcr.io/itecai/doesitwork:latest`
Once deployed, configure the above environment variables as needed for your environment.

## Developing/Contributing
**Clone Repository**
```
git clone https://github.com/iTecAI/doesitwork.git
cd doesitwork
```

**Setup**
Create a `.env` file in the `server` directory with your preferred environment.

**Run Backend**
```
cd server
./run.sh
```

**Run Client**
```
cd doesitwork
yarn start
```