Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kalegd/digitalbaconsampleproject
SampleProjectForDigitalBacon
https://github.com/kalegd/digitalbaconsampleproject
Last synced: 22 days ago
JSON representation
SampleProjectForDigitalBacon
- Host: GitHub
- URL: https://github.com/kalegd/digitalbaconsampleproject
- Owner: kalegd
- License: mit
- Created: 2022-05-27T06:46:46.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-27T10:34:40.000Z (3 months ago)
- Last Synced: 2024-10-28T01:07:57.247Z (2 months ago)
- Language: HTML
- Homepage: https://kalegd.github.io/DigitalBaconSampleProject/
- Size: 11.7 MB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Digital Bacon Sample Website
To host your own Digital Bacon website on github
1. Fork this repository (feel free to name it whatever you like)
2. Go to your forked version of the repository
3. Replace my-project.zip with your Digital Bacon project file
4. Go to Settings -> Pages
5. Set the source to main (or whatever your desired branch name is)To host your Digital Bacon website elsewhere, just copy the contents of this repository and host it on your preferred hosting service (remember to replace my-project.zip with your Digital Bacon project file)
### Adding Multi-User Support
You'll need an authUrl and socketUrl tied to a server to handle all the handshaking and management between users. [My Digital Bacon](https://mydigitalbacon.com) offers a free tier that you can use for this purpose, just create an account and add your website's origin as an external project and you'll get the necessary urls to be plugged into your setup parameters in `index.html` like so
```javascript
let params = {
projectFilePath: './my-project.zip',
authUrl: '{AUTH_URL}',
socketUrl: '{WEBSOCKET_URL}',
};
setup("my-container-id", params);
```