https://github.com/treeman/hologram-compile-error
https://github.com/treeman/hologram-compile-error
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/treeman/hologram-compile-error
- Owner: treeman
- Created: 2025-09-17T13:31:08.000Z (9 months ago)
- Default Branch: compile_fail
- Last Pushed: 2025-09-17T13:32:01.000Z (9 months ago)
- Last Synced: 2025-12-03T18:24:30.093Z (6 months ago)
- Language: Elixir
- Size: 55.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hologram Skeleton
This repository contains a bare-bones skeleton application for the Hologram web framework, built on top of Phoenix. It provides a minimal starting point for:
- Experimenting with Hologram
- Reproducing issues for bug reports
- Learning the basics of Hologram development
- Creating new Hologram applications
## Getting Started
To start your Hologram application:
1. Clone this repository
```bash
git clone https://github.com/bartblast/hologram_skeleton.git
cd hologram_skeleton
```
2. Install dependencies
```bash
mix setup
```
3. Start the Phoenix server
```bash
mix phx.server
```
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser to see the Hologram application running.
## File Organization
Hologram follows a convention of placing page and component files in the `app` directory. However, you can place your files in any directory that is compiled by the Elixir compiler, such as the `lib` directory.
## Database Configuration
To enable database functionality, uncomment the `HologramSkeleton.Repo` line in `lib/hologram_skeleton/application.ex`:
```elixir
children = [
HologramSkeletonWeb.Telemetry,
HologramSkeleton.Repo, # Uncomment this line
# ...
]
```
## Learn More
Visit the official Hologram website at [https://hologram.page](https://hologram.page) for comprehensive documentation and guides.
## License
This project is licensed under the same license as Hologram itself.