Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daviddevgt/todo_json_golang
https://github.com/daviddevgt/todo_json_golang
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/daviddevgt/todo_json_golang
- Owner: DavidDevGt
- Created: 2024-01-26T09:59:33.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-27T21:39:30.000Z (11 months ago)
- Last Synced: 2024-01-27T22:33:38.811Z (11 months ago)
- Language: Go
- Size: 1.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Primero, creas un archivo, llamado "tareas.json" y le pegas esto:
```json
[
{
"id": 1,
"titulo": "Hacer mi primera app en Go",
"completada": true
}
]
```### Después de crear el json
1. Abri la terminal y anda a la carpeta donde esten los archivos
2. Ejecuta el siguiente comando para inicializar un módulo Go en tu proyecto:
```shell
go mod init todo_json
```3. Después de ejecutar este comando, deberías ver un archivo `go.mod` en tu directorio de proyecto.
4. Ahora, puedes compilar y ejecutar tu aplicación de la siguiente manera:
```shell
go build
```
5. Ahora usa los comandos```shell
todo_json.exe ayuda
```