Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pdgonzalez872/pdgonzalez872.github.io
Paulo's blog (Phoenix + Tailwind -> Static Github Pages)
https://github.com/pdgonzalez872/pdgonzalez872.github.io
Last synced: about 1 month ago
JSON representation
Paulo's blog (Phoenix + Tailwind -> Static Github Pages)
- Host: GitHub
- URL: https://github.com/pdgonzalez872/pdgonzalez872.github.io
- Owner: pdgonzalez872
- Created: 2019-05-03T16:23:50.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-11-28T17:55:48.000Z (about 1 month ago)
- Last Synced: 2024-11-28T18:37:07.746Z (about 1 month ago)
- Language: HTML
- Homepage: https://pdgonzalez872.github.io/
- Size: 1.48 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PgBlog
My turn to overengineer a blog. Even though this is a Phoenix app, this is not
a Phoenix app. I only use it to generate html that works nicely with Tailwind
so I could use Github Pages to host it.Views here are my own.
## Build
```sh
./build.sh
```## dev server to test the /docs directory
```elixir
elixir server.exs# or do both at the same time:
./build.sh && elixir server.exs
```And visit `http://localhost:4001/index.html`
## dev server while writing the posts
```elixir
mix phx.server
```## Using Github pages
I have the repo configured to serve files from `/docs`, so that's where I put
the files we generate. Run the build script every time before pushing and
things should work :)