mirror of
https://github.com/Floriansylvain/CineAllo.git
synced 2026-08-19 11:43:24 +02:00
21 lines
364 B
Markdown
21 lines
364 B
Markdown
# CineAllo
|
|
## Setup
|
|
### Env file
|
|
- DATABASE_URL
|
|
- MYSQL_DATABASE
|
|
- MYSQL_ROOT_PASSWORD
|
|
- CINEALLO_PORT
|
|
``DATABASE_URL`` shoud look like this: ``mysql://root:<MYSQL_ROOT_PASSWORD>@db:3306/<MYSQL_DATABASE>``
|
|
## Usage
|
|
### Docker
|
|
```bash
|
|
docker-compose up --build
|
|
```
|
|
### From scratch
|
|
You'll need your own MySql DB running.
|
|
```bash
|
|
npm ci
|
|
```
|
|
```bash
|
|
npm run start
|
|
``` |