37 lines
773 B
Markdown
37 lines
773 B
Markdown
# Just a little for mmaker tool (not safe!!!)
|
|
|
|
### Pages:
|
|
- / | Place to fill out answers
|
|
- /manage | Place to manage questions
|
|
- /admin | Place to view submited answers
|
|
|
|
## Cloning the repo:
|
|
clone with
|
|
```bash
|
|
http://proudcircle.xyz/illyum/FormMaker.git
|
|
```
|
|
cd into the `FormMaker` folder.
|
|
|
|
Run
|
|
```bash
|
|
go mod tidy
|
|
```
|
|
Then you can either use
|
|
```bash
|
|
go build .
|
|
```
|
|
to build the binary.
|
|
|
|
\- or -
|
|
```bash
|
|
go run .
|
|
```
|
|
to run the app (This will also produce a binary in a hiden file on your system)
|
|
|
|
### Limitations:
|
|
- Text answers only (ASCI)
|
|
- No account authorization (ANYONE can view /admin & /manage)
|
|
|
|
|
|
#### Storage
|
|
The site uses an sqlite database in the folder of the app (will be automatically generated). Answers and questions will both be written to this database. |