An open API service indexing awesome lists of open source software.

https://github.com/augustinmauroy/learn-web-dev

This project aims to provide courses to learn web development. Through html, css, javascript. Then nodejs for the back-end.
https://github.com/augustinmauroy/learn-web-dev

javascript learn nodejs web webdev

Last synced: about 1 year ago
JSON representation

This project aims to provide courses to learn web development. Through html, css, javascript. Then nodejs for the back-end.

Awesome Lists containing this project

README

          

# Course site project

This project aims to provide courses to learn web development.
Through html, css, javascript. Then nodejs for the back-end.

## To test the project locally

Use this command to install the dependencies:

```bash
npm install
```

And to test:

```bash
npm start
```

## To test with Docker

Install node dependencies

```bash
docker run -v $(pwd):/app learnweb npm install
```

Start project

```bash
docker-compose up -d
```