14 lines
259 B
Bash
14 lines
259 B
Bash
|
#!/bin/bash
|
||
|
# Date: 2023-03-07
|
||
|
# Developer: Hyperling
|
||
|
# Purpose: Create a test user and some test data.
|
||
|
|
||
|
## Create User ##
|
||
|
|
||
|
# curl POST test_user test_password etc etc
|
||
|
|
||
|
## Create Entries ##
|
||
|
|
||
|
# curl POST test_user 2023-03-07 "Mangoes and rice" FALSE "Yummy!"
|
||
|
|