Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arodu/clase_20240405
https://github.com/arodu/clase_20240405
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/arodu/clase_20240405
- Owner: arodu
- Created: 2024-04-05T13:04:54.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-04-05T14:21:38.000Z (7 months ago)
- Last Synced: 2024-05-21T08:23:55.147Z (6 months ago)
- Language: JavaScript
- Homepage: https://clase-20240405.onrender.com/
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# clase 2024-04-05
1. crear proyecto
```
npx express-generator --view=ejs clase_20240405
```2. ir al directorio del proyecto
```
cd clase_20240405
```3. instalar dependencias
```
npm install
```4. correr el proyecto
```
npm start
```5. abrir el navegador en la dirección `http://localhost:3000/`
6. instalar git https://git-scm.com/downloads
7. inicializar git
```
git init
```8. crear archivo `.gitignore` y agregar la carpeta `node_modules`
9. agregar los cambios al repositorio
```
git add .
```10. hacer el primer commit
```
git commit -m "primer commit"
```11. crear un repositorio en github
12. agregar el repositorio remoto
```
git remote add origin URL_DEL_REPOSITORIO
```13. subir los cambios al repositorio
```
git push -u origin main
```14. crear proyecto en [render.com](https://render.com/)
15. conectar el repositorio de github con [render.com](https://render.com/)
16. hacer deploy del proyecto
17. abrir el navegador en la dirección del proyecto en [render.com](https://render.com/)