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.
- Host: GitHub
- URL: https://github.com/augustinmauroy/learn-web-dev
- Owner: AugustinMauroy
- License: mit
- Archived: true
- Created: 2022-09-06T13:18:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-01T22:49:52.000Z (over 3 years ago)
- Last Synced: 2025-03-12T12:17:59.295Z (over 1 year ago)
- Topics: javascript, learn, nodejs, web, webdev
- Language: JavaScript
- Homepage:
- Size: 497 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Code of conduct: CODE_OF_CONDUCT.md
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
```