Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heiso/cinecal
Cinecal is a work in progress website created to browse movies in my local cinemas.
https://github.com/heiso/cinecal
Last synced: 14 days ago
JSON representation
Cinecal is a work in progress website created to browse movies in my local cinemas.
- Host: GitHub
- URL: https://github.com/heiso/cinecal
- Owner: heiso
- License: mit
- Created: 2023-03-08T16:26:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-26T09:33:17.000Z (2 months ago)
- Last Synced: 2024-10-27T01:49:20.956Z (about 2 months ago)
- Language: TypeScript
- Homepage: https://cinecal.fly.dev
- Size: 766 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cinecal · ![logo](./public/favicon-32x32.png)
## Install and first run
```bash
npm i
cp .env.tpl .env
npm run up
npm run reset-database
npm run log
```Then go to http://localhost:3000
## DevEnv actions
Start
```bash
npm run up
```Show logs
```bash
npm run log
```Stop
```bash
npm run down
```Restart
```bash
npm run restart
```Truncate Database, Migrate and apply seeds
```bash
npm run reset-database
```Run Lint
```bash
npm run lint
```Run tests
```bash
npm run test
```