odtheame /
SearchMeWebApp
Aplicación web para el manejo de una base de datos en MySQL. Establecida en un servidor local Tomcat. Implementando MVC, desarrollo backend en Java y frontend en HTML5, CSS3 y JavaScript.
28/100 healthLoading repository data…
4GeeksAcademy / repository
Aplicación web implementando la autenticación de usuarios usando Python y el framework Flask para construir un back-end de REST API y React.js, y sessionStorage API para el front-end.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Build web applications using React.js for the front end and python/flask for your backend API.
If you use Github Codespaces (recommended) or Gitpod this template will already come with Python, Node and the Posgres Database installed. If you are working locally make sure to install Python 3.10, Node
It is recomended to install the backend first, make sure you have Python 3.10, Pipenv and a database engine (Posgress recomended)
$ pipenv install$ cp .env.example .env| Engine | DATABASE_URL |
|---|---|
| SQLite | sqlite:////test.db |
| MySQL | mysql://username:password@localhost:port/example |
| Postgress | postgres://username:password@localhost:5432/example |
$ pipenv run migrate (skip if you have not made changes to the models on the ./src/api/models.py)$ pipenv run upgrade$ pipenv run startNote: Codespaces users can connect to psql by typing:
psql -h localhost -U gitpod example
You are also able to undo a migration by running
$ pipenv run downgrade
To insert test users in the database execute the following command:
Selected from shared topics, language and repository description—not editorial ratings.
odtheame /
Aplicación web para el manejo de una base de datos en MySQL. Establecida en un servidor local Tomcat. Implementando MVC, desarrollo backend en Java y frontend en HTML5, CSS3 y JavaScript.
28/100 healthmsoldiazdevivar /
Aplicación web interactiva para compartir GIFs animados a través de la API de Giphy implementando HTML, CSS y Javascript
27/100 healthregaladoandres10 /
Aplicación web, para el control de organización del sistema dentro un restaurante-cafeteria implementando PHP de backend y HTML, JavaScript, CSS con Bootstrap en frontend.
/100 health$ flask insert-test-users 5
And you will see the following message:
Creating test users
test_user1@test.com created.
test_user2@test.com created.
test_user3@test.com created.
test_user4@test.com created.
test_user5@test.com created.
Users created successfully!
Every Github codespace environment will have its own database, so if you're working with more people eveyone will have a different database and different records inside it. This data will be lost, so don't spend too much time manually creating records for testing, instead, you can automate adding records to your database by editing commands.py file inside /src/api folder. Edit line 32 function insert_test_data to insert the data according to your model (use the function insert_test_users above as an example). Then, all you need to do is run pipenv run insert-test-data.
$ npm install$ npm run startThis boilerplate it's 100% read to deploy with Render.com and Heroku in a matter of minutes. Please read the official documentation about it.
This template was built as part of the 4Geeks Academy Coding Bootcamp by Alejandro Sanchez and many other contributors. Find out more about our Full Stack Developer Course, and Data Science Bootcamp.
You can find other templates and resources like this at the school github page.
LAEH30 /
Aplicación web interactiva para la gestión y administración de citas veterinarias desarrollada en JavaScript Vanilla (ES6+), implementando Programación Orientada a Objetos (POO) y estilos Tailwind CSS.
59/100 healthRodrigoPazos04 /
Aplicación full stack de gestión de gastos desarrollada con ASP.NET Core Web API, Entity Framework Core y JavaScript, implementando un CRUD completo consumiendo endpoints REST.
42/100 healthAlejandroMartinez5 /
Desarrollar una aplicación web cliente utilizando exclusivamente HTML5, CSS3 y JavaScript (Vanilla JS) que consuma el API REST desarrollado en la práctica anterior, implementando correctamente los métodos HTTP (GET, POST, PUT, DELETE) y gestionando respuestas asincrónicas mediante fetch
42/100 health