JoinUs is a simple web app that collects user email addresses and stores them in a MySQL database.
README.md: Readme file for the app.schema.sql: SQL script for creating the MySQL database schema.exercises.sql: SQL script for database analysis.app.js: JavaScript file to populate the database with 500 random users.JoinUs/app.js: JavaScript file to collect user email and store it in the database.JoinUs/views/home.js: HTML markup file for the web page layout.JoinUs/public/app.css: CSS file for styling the web page.
April 2024 - Final version of web app.
- Open your preferred Integrated Development Environment (IDE).
- Run
schema.sqlto create the MySQL database schema. - Open
app.js, include your MySQL root user password, and run the script to populate the database with 500 random users. - Navigate to the
JoinUsdirectory and openapp.js. - Include your MySQL root user password in the appropriate section of the script.
- Run
localhost:8080in your web browser to access the web app.
- MySQL
Ensure that sensitive information such as passwords is handled securely in your scripts.