summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README57
1 files changed, 21 insertions, 36 deletions
diff --git a/README b/README
index 8645f74e..d3aedcc4 100644
--- a/README
+++ b/README
@@ -1,44 +1,29 @@
-<a href="https://opendc.org/">
- <img src="https://opendc.org/img/logo.png" alt="OpenDC logo" title="OpenDC" align="right" height="100" />
-</a>
+#Dependencies
-# OpenDC
+Kafka:
-Collaborative Datacenter Simulation and Exploration for Everybody
+extra/kafka 4.1.1-1
-[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](/LICENSE.txt)
-[![Documentation](https://img.shields.io/badge/docs-master-green.svg)](https://atlarge-research.github.io/opendc)
-[![GitHub release](https://img.shields.io/github/v/release/atlarge-research/opendc?include_prereleases)](https://github.com/atlarge-research/opendc/releases)
-[![Build](https://github.com/atlarge-research/opendc/actions/workflows/build.yml/badge.svg)](https://github.com/atlarge-research/opendc/actions/workflows/build.yml)
+```bash
+sudo -u kafka /usr/bin/kafka-storage.sh format -t "$(/usr/bin/kafka-storage.sh random-uuid)" -c /etc/kafka/server.properties --standalone
+systemctl enable kafka
+systemctl start kafka
+```
------
+```bash
+bin/kafka-topics.sh --create --topic postgres-topic --bootstrap-server localhost:9092 --partitions 1 --replication-factor 1
+bin/kafka-topics.sh --list --bootstrap-server localhost:9092
+```
-This repository is the home of the OpenDC project, a free and open-source platform for cloud datacenter simulation.
-## Latest Release
+Postgresql:
-All releases of OpenDC can be found [here](https://github.com/atlarge-research/opendc/releases).
-The latest release will be marked _latest_.
+extra/postgresql 18.1-2
-## Documentation
-
-You can find the OpenDC documentation [on the website](https://atlarge-research.github.io/opendc/).
-The documentation is divided into several sections:
-
-* [Getting Started](https://atlarge-research.github.io/opendc/docs/category/getting-started/)
-* [Tutorials](https://atlarge-research.github.io/opendc/docs/category/tutorials/)
-* [Advanced Guides](https://atlarge-research.github.io/opendc/docs/category/advanced-guides/)
-* [Where to Get Support](https://atlarge-research.github.io/opendc/community/support/)
-* [Contributing Guide](https://atlarge-research.github.io/opendc/community/contributing/)
-
-The source code for the documentation is located in the [gh-pages branch](https://github.com/atlarge-research/opendc/tree/gh-pages).
-Push to that branch to update the documentation.
-
-## Contributing
-
-Questions, suggestions and contributions are welcome and appreciated!
-Please refer to the [contributing guidelines](CONTRIBUTING.md) for more details.
-
-## License
-
-OpenDC is distributed under the MIT license. See [LICENSE.txt](/LICENSE.txt).
+```bash
+initdb -D /var/lib/postgres/data
+mkdir /run/postgresql/
+cd /run/postgresql/
+touch .s.PGSQL.5432.lock
+chown -R postgres:postgres /run/postgresql
+```