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
make
in the terminal to test. - Open localhost in your browser to see the gameplay.
- Official CORE Wiki: coregame.de/wiki
Want to get hacking right away? Set up your dev environment in one simple command using Devpod! 🚀
make devcontainer
This 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
IDE
variable. 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-devcontainer
This will stop the container without removing it, allowing you to restart it later.
To completely remove the Dev Container, use:
make remove-devcontainer
This will delete the container and its associated resources.