doc: README
This commit is contained in:
@@ -1,6 +1,13 @@
|
|||||||
# FakeMoney
|
# FakeMoney
|
||||||
A PayPal-like payment processor for virtual money, intended to be used for simulation games.
|
**A PayPal-like payment processor for virtual money, intended to be used for simulation games.**
|
||||||
|
|
||||||
|
Send and receive money from your account and businesses you own using simple URLs and QR codes.
|
||||||
|
<img src="docs/img/screenshot-login.png" width="32%" alt="Login view">
|
||||||
|
<img src="docs/img/screenshot-send.png" width="32%" alt="Send view">
|
||||||
|
<img src="docs/img/screenshot-receive.png" width="32%" alt="Receive view">
|
||||||
|
|
||||||
|
## Deployment
|
||||||
|
Is simplified using Docker and by making a few assumptions, e.g. that API and frontend are available under the same domain.
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
### Frontend
|
### Frontend
|
||||||
|
|||||||
BIN
docs/img/screenshot-login.png
Normal file
BIN
docs/img/screenshot-login.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
BIN
docs/img/screenshot-receive.png
Normal file
BIN
docs/img/screenshot-receive.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 26 KiB |
BIN
docs/img/screenshot-send.png
Normal file
BIN
docs/img/screenshot-send.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
@@ -1,3 +1,4 @@
|
|||||||
|
import Account from "../model/user";
|
||||||
export class LoginRequest{
|
export class LoginRequest{
|
||||||
constructor(
|
constructor(
|
||||||
public username: string,
|
public username: string,
|
||||||
@@ -5,5 +6,8 @@ export class LoginRequest{
|
|||||||
){}
|
){}
|
||||||
}
|
}
|
||||||
export class LoginResponse{
|
export class LoginResponse{
|
||||||
constructor(){}
|
constructor(
|
||||||
|
public user: Account,
|
||||||
|
public ownedBusinesses: Account[],
|
||||||
|
){}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user