ThePlaceHolders/README.md

21 lines
731 B
Markdown
Raw Normal View History

2024-09-26 01:27:41 -05:00
# UTSA Placeholders
2024-09-25 19:36:13 -05:00
"UTSA Place" Collaborate website canvas that allows students to place a pixel
within a restricted amount of time to make art.
2024-09-18 22:29:43 -05:00
2024-09-26 01:11:22 -05:00
## How to run
1. Install [Go](https://go.dev/dl/)
2. Run the command `go run .` inside this folder
3. View the website at [127.0.0.1:8080](http://127.0.0.1:8080/)
2024-09-26 01:27:41 -05:00
## Backend source files
2024-09-25 19:36:13 -05:00
Our back-end is written in [Go](https://go.dev/) using the standard library.
2024-09-26 01:11:22 -05:00
* [Request handling](server.go)
* [User registration/login](users.go)
2024-09-25 19:36:13 -05:00
2024-09-26 01:27:41 -05:00
## Frontend source files
2024-09-25 19:36:13 -05:00
Our front-end is written in vanilla JavaScript, using the [Bootstrap](https://getbootstrap.com/)
CSS framework.
* [Main page](static/index.html)
* [Login page](static/login.html)
* [Registration page](static/register.html)