2022-02-27 14:24:48 -06:00
|
|
|
# Profectus
|
2021-05-19 17:21:51 -05:00
|
|
|
|
2022-03-01 21:10:37 -06:00
|
|
|
A game engine that grows with you
|
|
|
|
|
|
|
|
[![Run on Repl.it](https://repl.it/badge/github/profectus-engine/Profectus)](https://repl.it/github/profectus-engine/Profectus)
|
|
|
|
|
|
|
|
[Read the docs](https://moddingtree.com)
|
|
|
|
|
2021-05-19 17:21:51 -05:00
|
|
|
## Project setup
|
|
|
|
```
|
|
|
|
npm install
|
|
|
|
```
|
|
|
|
|
2022-06-26 15:36:28 -05:00
|
|
|
### Hosts dev server and hot-reloads modules as they're changed
|
2021-05-19 17:21:51 -05:00
|
|
|
```
|
2022-07-07 12:12:53 +02:00
|
|
|
npm start
|
2021-05-19 17:21:51 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
### Compiles and minifies for production
|
|
|
|
```
|
|
|
|
npm run build
|
|
|
|
```
|
|
|
|
|
2022-06-26 15:36:28 -05:00
|
|
|
### Hosts the production build
|
|
|
|
```
|
|
|
|
npm run preview
|
|
|
|
```
|
|
|
|
|
2022-07-07 12:13:05 +02:00
|
|
|
### Runs the tests using vite-jest
|
|
|
|
```
|
|
|
|
npm run test
|
|
|
|
```
|