You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
547 B
Markdown

# Sealious app
2 years ago
## Requirements
- docker
- docker-compose (version 2.6 or up)
- tmux
2 years ago
## Installation
```
3 months ago
npm install
```
## Running the app in development mode
```
npx sealgen make-env
3 months ago
docker-compose up -d db mailcatcher
npm run watch
```
3 years ago
3 months ago
## Adding a component
```
npx sealgen add-component
```
And then go to `localhost:8080/components` to preview your custom component
## Testing
First time after installing the project run this command to download firefox
```
npx playwright install firefox
```
And then
```
npm run test
```