A web-based database GUI and control panel for rAthena.
Minimal configuration
Just install and run. RACP will read all data from either the rAthena data files or mysql database.
Total abstraction
RACP contains no data. No fixtures, no enums, nothing. RACP will read all data from either the rAthena data files or mysql database and the RO client files.
Integration stability
Unit and E2E tests run on each commit and tests run against a real rathena instance.
Function over form
The UI prioritizes functionality over aesthetics. Does not support theming, keeps things simple.
This is a pet project of mine, so it contains a lot of experimental code that I wrote for fun and practice and that would be inadvisable to use in a professional project.
Here's a list of what's experimental:
- A custom frontend router (I just wanted to build one, the project really had no need for this)
- A custom logger (Extremely pointless, I just wanted to code this. There's a million libraries that do exactly this)
- A custom resource library (born out of necessity and inexperience with what's available off the shelf. I needed some abstraction around all the various static data formats rAthena provides)
Everything else however is pretty much industry standard.
To run RACP you will need the following software installed on your machine:
- Clone this repository on a machine matching the prerequisites
- Open a terminal and navigate to the project root
- Run
yarn install
- Run
yarn api:dev
to start the api in dev mode. - Run
yarn app:dev
to start the app in dev mode. - Visit
http://localhost:8080/
in your browser. - (Optional) Run
yarn test:unit
to run the unit tests (add--watch
to keep the runner active). - (Optional) Run
cypress open
to run open the E2E test development tool.
- Install rAthena on the same machine as RACP.
- Create a new file
.env.local
in the project root folder - Add the following to the file, but substitute
<path>
with the absolute path to your rAthena folder:
rAthenaPath=<path>
All development happens in branches. The main
branch gets deployed to the demo site listed above.
No branch is allowed to merge unless all tests pass.
All major features should be covered by E2E tests. As for unit tests, they are not required, but are encouraged for more complex units.
This is a fairly standard React + Express.js application, so you can use the provided scripts to manually manage a production deployment if you have the technical experience to do so:
- Clone this repository on a server matching the prerequisites
- Create a
.env.local
file in the project root folder with your desired settings (see below) - Run
yarn install
to install latest dependencies - Run
yarn db:deploy
to deploy database migrations - Run
yarn build
to build both the API and app, oryarn (api|app):build
to build one. - Run
yarn serve
to serve both the API and app, oryarn (api|app):serve
to serve one. - (Optional but recommended): Instead of
yarn serve
you can use PM2 for better stability and monitoring:pm2 restart ecosystem.config.json
This .env.local
configuration will work for most users:
NODE_ENV=production
reactRefresh=false
hostname=<your servers public hostname>
apiPort=<your desired port for the api>
apiBaseUrl="//<hostname>/<apiPort>"
appPort=<your desired port for the app>
rAthenaPath="<path to your rAthena folder>"
jwtSecret=<your secret>
You can see which configuration options are available:
- For the Api: run
yarn api:serve --help
. - For the App: see the
env
variable in webpack.config.ts.
Once you have RACP running in production, you will need to populate it with data for the best user experience. If you do not do this things like item descriptions, monster and map images, etc. will not be available.
To do this, simply sign in to your admin account and go to the Assets page and use the asset uploader. Additional instructions are available on the page.
This information is intended for developers of RACP. None of this is relevant if you are simply forking/cloning RACP and running it for your server as-is.
- All rAthena specific code is abstracted away and located in the rathena folder. All API services are agnostic to the underlying data source.
- The rAthena version we integrate towards is a fixed commit hash in package.json.
- The rAthena database is interfaced with using knex and an introspected type definition generated with
yarn codegen:rathena
. Use this command and commit the changes to keep the knex bindings up to date whenever bumping the rAthena version. - The RACP database is defined using a standard prisma setup.