Skip to content

bartblast/hologram_skeleton

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

    git clone https://github.com/bartblast/hologram_skeleton.git
    cd hologram_skeleton
  2. Install dependencies

    mix setup
  3. Start the Phoenix server

    mix phx.server

Now you can visit 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:

children = [
  HologramSkeletonWeb.Telemetry,
  HologramSkeleton.Repo,  # Uncomment this line
  # ...
]

Learn More

Visit the official Hologram website at https://hologram.page for comprehensive documentation and guides.

License

This project is licensed under the same license as Hologram itself.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published