Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/dax-dot-gay/doesitwork
- Owner: dax-dot-gay
- License: mit
- Created: 2023-02-02T14:29:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-12T04:50:46.000Z (almost 2 years ago)
- Last Synced: 2024-08-22T18:03:22.044Z (3 months ago)
- Language: TypeScript
- Size: 749 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```