responsive_image_grid/README.md

57 lines
863 B
Markdown
Raw Permalink Normal View History

2020-06-26 00:23:11 +02:00
# Responsive Image Grid
![Alt text](https://s3.crstin.com/public/responsive_image_grid_repo_preview.png)
## Origin
The initial commit has been generated by `vue create responsive_image_grid`. The next step has been adding `.prettierrc` and running `yarn lint` to convert the codebase.
2020-06-25 23:29:05 +02:00
## Project setup
2020-06-26 00:23:11 +02:00
```bash
yarn
cp .env.example .env
2020-06-25 23:29:05 +02:00
```
2020-06-26 00:23:11 +02:00
Then add your unsplash key after `VUE_APP_UNSPLASH_ACCESS_KEY=` to the .env file.
## Run the test suite
```bash
yarn test
2020-06-25 23:29:05 +02:00
```
### Compiles and hot-reloads for development
2020-06-26 00:23:11 +02:00
```bash
2020-06-25 23:29:05 +02:00
yarn serve
```
### Compiles and minifies for production
2020-06-26 00:23:11 +02:00
```bash
2020-06-25 23:29:05 +02:00
yarn build
```
### Run your unit tests
2020-06-26 00:23:11 +02:00
```bash
2020-06-25 23:29:05 +02:00
yarn test:unit
```
### Run your end-to-end tests
2020-06-26 00:23:11 +02:00
```bash
2020-06-25 23:29:05 +02:00
yarn test:e2e
```
### Lints and fixes files
2020-06-26 00:23:11 +02:00
```bash
2020-06-25 23:29:05 +02:00
yarn lint
```
### Customize configuration
2020-06-26 00:23:11 +02:00
2020-06-25 23:29:05 +02:00
See [Configuration Reference](https://cli.vuejs.org/config/).