2019-05-29 00:40:48 +08:00
|
|
|
# Phantasmal World
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-07-30 21:19:03 +08:00
|
|
|
Phantasmal World is a suite of tools for Phantasy Star Online.
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-05-29 00:40:29 +08:00
|
|
|
## For Developers
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-09-15 00:04:28 +08:00
|
|
|
See [features](./FEATURES.md) for a list of features, planned features and bugs.
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-05-29 00:40:29 +08:00
|
|
|
### Getting Started
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-10-08 00:26:45 +08:00
|
|
|
1. Install Node.js ([https://nodejs.org/](https://nodejs.org/))
|
|
|
|
2. Install Yarn ([https://yarnpkg.com/](https://yarnpkg.com/))
|
|
|
|
3. `cd` to the project directory
|
|
|
|
4. Install dependencies with `yarn`
|
|
|
|
5. Launch server on [http://localhost:1623/](http://localhost:1623/) with `yarn start`
|
|
|
|
6. src/index.ts is the application's entry point
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-10-08 00:26:45 +08:00
|
|
|
### Unit Tests
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-10-08 00:26:45 +08:00
|
|
|
Run the unit tests with `yarn test` or `yarn test --watch` if you want the relevant tests to be
|
|
|
|
re-run whenever a file is changed. The testing framework used is Jest.
|
2019-09-15 00:04:28 +08:00
|
|
|
|
|
|
|
### Linting and Code Formatting
|
|
|
|
|
|
|
|
ESLint and Prettier are used for linting and formatting.
|
|
|
|
|
|
|
|
Run with `yarn lint` and/or configure your editor to use the ESLint/Prettier configuration.
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-05-29 00:40:29 +08:00
|
|
|
### Production Build
|
2019-05-28 19:44:17 +08:00
|
|
|
|
2019-07-30 21:19:03 +08:00
|
|
|
Create an optimized production build with `yarn build`.
|