KO
|
EN
gitlite — search
Search
#python
#typescript
#nextjs
#react
#postgresql
#tailwindcss
#ai
#machine-learning
#exploit
#hacktoberfest
#java
#api
client
★ 63
Open GitHub ↗
Real-time strategy game played in the browser
Download README (.md)
Explore Similar Repositories
test3
:
No description available.
MICCAI2023-Paper-List
:
Arxiv 上预发表的 MICCAI 2023 主会中稿论文
AdaBM
:
[CVPR2024] Official Code for the "AdaBM: On-the-Fly Adaptive Bit Mapping for Image Super-Resolution"
fe8kv9
:
YOLOv9-FishEye: Improving method for fisheye camera object detection
EarthLoc
:
Code for CVPR 2024 "EarthLoc: Astronaut Photography Localization by Indexing Earth from Space"
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
client
?
Download (.md)
<p align="center"> <a href="http://warfront.io"><img src="https://raw.githubusercontent.com/WarFrontIO/client/master/resources/themes/wf-logo-pastel.png" alt="WarFront.io Logo" width="150"></a> </p> <p align="center"> <a href="https://discord.gg/tvgfpeCGaD"><img src="https://img.shields.io/discord/1085091019265159198?logo=discord&label=discord&color=%235865F2&labelColor=%232B3137" alt="Discord"></a> <a href="https://github.com/WarFrontIO/client/actions/workflows/ci.yml"><img src="https://github.com/WarFrontIO/client/actions/workflows/ci.yml/badge.svg" alt="CI"></a> </p> ## About WarFront.io is a real-time strategy game that is played in the browser. Still early in development. You can find the game at [warfront.io](https://warfront.io). Development builds can be found at [dev.warfront.io](https://dev.warfront.io). ## Contributing The project is fully open-source and contributions are very welcome. Exact details on how to contribute can be found in the [CONTRIBUTING.md](CONTRIBUTING.md) file. ## Building To build the project, you will need to have Node.js (>= 20) and npm installed. You can download them from [here](https://nodejs.org/). First, clone the repository: ```bash git clone https://github.com/WarFrontIO/client.git warfront-client cd warfront-client ``` Before building the project, you will need to install the dependencies. You can do this by running the following command in the project directory: ```bash git submodule update --init --recursive npm ci ``` You might need to rerun these commands if you update the repository. To develop the project locally, you can run the following command: ```bash npm run dev ``` This will start a development server on `http://localhost:8080/` that will automatically reload when you make changes to the code. Note that internal servers of IDEs like WebStorm do not work correctly with this project. For a production build, you can run the following command: ```bash npm run build-prod ```