This project is a clone of dontpad made in Go for practice purposes.
When run, the application will expose two endpoints:
Responsible for serving the browser pages. This endpoint requires no parameters, instead it uses the request path string to fetch the content from the server and renders it via HTML templates.
Responsible for serving content and interacting with the database. Basically this is a CRUD API, but it uses the client's request path as the primary key inside the database.
The database is a .sqlite
file in the root directory, created automatically, if non-existent.