Welcome to the CORE project repository! We’re excited to have you on board for this coding adventure.
- Clone the repository and set up your dev container:
git clone your-repo-url && cd my-core-bot && make devcontainer
- Run
makein the terminal to test. - Open localhost in your browser to see the gameplay.
- Keep going writing your bot! Get started under
my-core-bot/src/main.c!
- Official CORE Wiki: coregame.de/wiki
Want to get hacking right away? Set up your dev environment in one simple command using Devpod! 🚀
make devcontainerThis command will:
- Automatically download and install the Devpod CLI (if it’s not already there).
- Ensure Docker is up and running (it will attempt to start Docker on 42 iMacs if it’s not started).
- Set up the Docker provider for Devpod.
- Launch your preferred IDE inside a fully configured Dev Container
💡 Tip: You can specify your favorite IDE by passing the
IDEvariable. For example:make devcontainer IDE=zed
📋 Default IDE: vscode
🧰 Supported IDEs: vscode, openvscode, cursor, zed, codium, intellij, pycharm, phpstorm,
rider, fleet, goland, webstorm, rustrover, rubymine, clion, dataspell, jupyternotebook,
vscode-insiders, positron, rstudio
To stop the running Dev Container, use:
make stop-devcontainerThis will stop the container without removing it, allowing you to restart it later.
To completely remove the Dev Container, use:
make remove-devcontainerThis will delete the container and its associated resources.