Spaces:
Runtime error
Runtime error
Update README.md
Browse files
README.md
CHANGED
@@ -36,4 +36,28 @@ Follow these steps to get your decentralized code deployment up and running.
|
|
36 |
cd decentralized-code-deployment
|
37 |
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
36 |
cd decentralized-code-deployment
|
37 |
|
38 |
|
39 |
+
2. **Build and Run with Docker:**
|
40 |
+
```bash
|
41 |
+
docker build -t decentralized-app .
|
42 |
+
docker run -p 8080:8080 decentralized-app
|
43 |
+
```
|
44 |
+
|
45 |
+
3. **Access the Application:**
|
46 |
+
Open your browser and go to [http://localhost:8080](http://localhost:8080).
|
47 |
+
|
48 |
+
## Configuration
|
49 |
+
|
50 |
+
Customize the project by modifying the environment variables in the Docker configuration.
|
51 |
+
|
52 |
+
- **HF_TOKEN:** (Set your Hugging Face API token)
|
53 |
+
|
54 |
+
## Contributing
|
55 |
+
|
56 |
+
Feel free to contribute by opening issues or submitting pull requests.
|
57 |
+
|
58 |
+
## License
|
59 |
+
|
60 |
+
This project is licensed under the [MIT License](LICENSE).
|
61 |
+
```
|
62 |
+
|
63 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|