mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-21 16:13:57 +00:00
38 lines
564 B
Markdown
38 lines
564 B
Markdown
|
# Profectus
|
||
|
|
||
|
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)
|
||
|
|
||
|
## Project setup
|
||
|
```
|
||
|
npm install
|
||
|
```
|
||
|
|
||
|
### Hosts dev server and hot-reloads modules as they're changed
|
||
|
```
|
||
|
npm start
|
||
|
```
|
||
|
|
||
|
### Compiles and minifies for production
|
||
|
```
|
||
|
npm run build
|
||
|
```
|
||
|
|
||
|
### Hosts the production build
|
||
|
```
|
||
|
npm run preview
|
||
|
```
|
||
|
|
||
|
### Lints and fixes files
|
||
|
```
|
||
|
npm run lint
|
||
|
```
|
||
|
|
||
|
### Runs the tests using vite-jest
|
||
|
```
|
||
|
npm run test
|
||
|
```
|