https://github.com/rlebre/lightlex
Web TV app to show movies
https://github.com/rlebre/lightlex
lightningjs typescript
Last synced: about 1 year ago
JSON representation
Web TV app to show movies
- Host: GitHub
- URL: https://github.com/rlebre/lightlex
- Owner: rlebre
- Created: 2022-05-05T10:04:49.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-10T21:56:00.000Z (about 4 years ago)
- Last Synced: 2025-01-14T23:59:23.341Z (over 1 year ago)
- Topics: lightningjs, typescript
- Language: TypeScript
- Homepage: https://ruilebre.com/lightlex
- Size: 1.01 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Lightlex
This app was created using LightningJS. It is a proof of concept to explore the LightningJS SDK and Core features, as Routing, Texture loading, Animations, Transitions, Shapes, and more.
#### Pre requisites
Make sure you create a `.env` file containing your [TMDB](https://www.themoviedb.org/) api key or, alternatively, provide it in the API_KEY environment variable. Example of the `.env` file:
```bash
API_KEY=8e88asdsad89asua
```
More information about how to get the TMDB api key [here](https://www.themoviedb.org/settings/api).
#### Running the App
1. Install the NPM dependencies by running `npm install`
2. Build the App using the webpack by runnning `npm run build`
3. Fire up a local webserver and open the App in a browser by running `lng serve` inside the root of your project
#### Developing the App
During development you can use the **watcher** functionality of webpack.
```bash
npm run dev
```