features/bootstrapping #1
3
.gitignore
vendored
3
.gitignore
vendored
@ -25,4 +25,5 @@ go.work
|
||||
|
||||
.vscode
|
||||
*_templ.go
|
||||
server
|
||||
server
|
||||
.env
|
5
go.mod
5
go.mod
@ -3,14 +3,14 @@ module git.jamestombleson.com/jtom38/newsbot-portal
|
||||
go 1.22.1
|
||||
|
||||
require (
|
||||
git.jamestombleson.com/jtom38/newsbot-api v0.0.0-20240508052157-5b8cf6dfa6cc
|
||||
git.jamestombleson.com/jtom38/newsbot-api v0.0.0-20240510021003-4e9a17209f02
|
||||
github.com/a-h/templ v0.2.680
|
||||
github.com/joho/godotenv v1.5.1
|
||||
github.com/labstack/echo/v4 v4.12.0
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/KyleBanks/depth v1.2.1 // indirect
|
||||
github.com/a-h/templ v0.2.680 // indirect
|
||||
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
||||
github.com/go-openapi/jsonreference v0.20.0 // indirect
|
||||
github.com/go-openapi/spec v0.20.6 // indirect
|
||||
@ -25,7 +25,6 @@ require (
|
||||
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
||||
github.com/valyala/fasttemplate v1.2.2 // indirect
|
||||
golang.org/x/crypto v0.22.0 // indirect
|
||||
golang.org/x/mod v0.17.0 // indirect
|
||||
golang.org/x/net v0.24.0 // indirect
|
||||
golang.org/x/sys v0.19.0 // indirect
|
||||
golang.org/x/text v0.14.0 // indirect
|
||||
|
6
go.sum
6
go.sum
@ -1,5 +1,5 @@
|
||||
git.jamestombleson.com/jtom38/newsbot-api v0.0.0-20240508052157-5b8cf6dfa6cc h1:QhuOntLiCv/kn+ymg/Qw7yKwXX+lPGRjgw8/saqfAeE=
|
||||
git.jamestombleson.com/jtom38/newsbot-api v0.0.0-20240508052157-5b8cf6dfa6cc/go.mod h1:A3UdJyQ/IEy3utEwJiC4nbi0ohfgrUNRLTei2iZhLLA=
|
||||
git.jamestombleson.com/jtom38/newsbot-api v0.0.0-20240510021003-4e9a17209f02 h1:yvu0Fnpw19YUH+AXvMQxJV8mUyEXkvpZqd8HctpwMrI=
|
||||
git.jamestombleson.com/jtom38/newsbot-api v0.0.0-20240510021003-4e9a17209f02/go.mod h1:A3UdJyQ/IEy3utEwJiC4nbi0ohfgrUNRLTei2iZhLLA=
|
||||
github.com/KyleBanks/depth v1.2.1 h1:5h8fQADFrWtarTdtDudMmGsC7GPbOAu6RVB3ffsVFHc=
|
||||
github.com/KyleBanks/depth v1.2.1/go.mod h1:jzSb9d0L43HxTQfT+oSA1EEp2q+ne2uh6XgeJcm8brE=
|
||||
github.com/a-h/templ v0.2.680 h1:TflYFucxp5rmOxAXB9Xy3+QHTk8s8xG9+nCT/cLzjeE=
|
||||
@ -21,6 +21,8 @@ github.com/go-openapi/swag v0.21.1 h1:wm0rhTb5z7qpJRHBdPOMuY4QjVUMbF6/kwoYeRAOrK
|
||||
github.com/go-openapi/swag v0.21.1/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ=
|
||||
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
|
||||
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
|
||||
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
|
||||
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
|
||||
github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0=
|
||||
github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
|
||||
github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
|
||||
|
@ -9,4 +9,8 @@ import (
|
||||
|
||||
func (h *Handler) HomeIndex(c echo.Context) error {
|
||||
return Render(c, http.StatusOK, home.Index())
|
||||
}
|
||||
|
||||
func (h *Handler) HomeAbout(c echo.Context) error {
|
||||
return Render(c, http.StatusOK, home.About())
|
||||
}
|
15
internal/views/home/about.templ
Normal file
15
internal/views/home/about.templ
Normal file
@ -0,0 +1,15 @@
|
||||
package home
|
||||
|
||||
import "git.jamestombleson.com/jtom38/newsbot-portal/internal/views/layout"
|
||||
|
||||
templ About() {
|
||||
@layout.WithTemplate(){
|
||||
<h1 class="title"> About this project</h1>
|
||||
|
||||
<section class="section">
|
||||
Newsbot started a small project to send out notifications to discord servers.
|
||||
I wanted to be able to keep the small communitiy aware of new posts about a game we all played.
|
||||
That feature still exists because I think that keeping a communitiy aware and engaged is important and not everyone follows the same news.
|
||||
</section>
|
||||
}
|
||||
}
|
@ -9,15 +9,19 @@ templ Index() {
|
||||
<section class="section">
|
||||
<p>
|
||||
News bot is a self hostable solution to aggregating your news.
|
||||
You can run `Newsbot` as an API
|
||||
You can run `Newsbot` as an API or interact with it with this site.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
|
||||
<div class="block">
|
||||
<h2 class="title">Why Newsbot</h2>
|
||||
I started to build this tool to help me avoid sitting on the big platform websites.
|
||||
I wanted a tool that would work for me, not them.
|
||||
|
||||
This tool started as a notification system that would let me redirect RSS posts over to Discord servers.
|
||||
It still has those roots but now its starting to scale up to a full Aggregation platform.
|
||||
|
||||
</div>
|
||||
<p>
|
||||
This project is a passion project of mine as I
|
||||
|
Loading…
Reference in New Issue
Block a user