https://github.com/kwa0x2/settle-backend
A backend for a gamer-focused chat application where only users with over 500 hours on Steam can join. Built with MongoDB, it integrates OpenID for Steam-based authentication, real-time messaging with SocketIO, and file handling with Amazon S3. This project follows Uncle Bob's Clean Architecture principles to ensure a robust, maintainable structure
https://github.com/kwa0x2/settle-backend
docker golang grafana mongodb mongodb-atlas openid prometheus socket-io steam
Last synced: 2 months ago
JSON representation
A backend for a gamer-focused chat application where only users with over 500 hours on Steam can join. Built with MongoDB, it integrates OpenID for Steam-based authentication, real-time messaging with SocketIO, and file handling with Amazon S3. This project follows Uncle Bob's Clean Architecture principles to ensure a robust, maintainable structure
- Host: GitHub
- URL: https://github.com/kwa0x2/settle-backend
- Owner: kwa0x2
- License: mit
- Created: 2024-10-12T17:18:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-18T13:27:14.000Z (over 1 year ago)
- Last Synced: 2025-04-05T14:13:26.089Z (about 1 year ago)
- Topics: docker, golang, grafana, mongodb, mongodb-atlas, openid, prometheus, socket-io, steam
- Language: Go
- Homepage: https://www.nettasec.com/
- Size: 8.17 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Docker.md
- License: LICENSE
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.
Your application will be available at http://localhost:9090.
### Deploying your application to the cloud
First, build your image, e.g.: `docker build -t myapp .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`.
Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
docs for more detail on building and pushing.
### References
* [Docker's Go guide](https://docs.docker.com/language/golang/)