Welcome to JX, your one-stop solution for a modern, intuitive product listing experience. This project serves as a midterm project for Lighthouse Labs and aims to reimagine the traditional classified ad websites, offering a slick user interface and enhanced functionalities. If you're familiar with platforms like Craigslist, imagine that but with a touch of modernity and user-friendliness.
- User Authentication: Secure login and registration features.
- Dynamic Search: Real-time search and filter options for an enhanced user experience.
- Interactive UI: A modern and clean interface built for simplicity and efficiency.
- CRUD Operations: Full Create, Read, Update, and Delete functionalities for listings.
- User Profiles: Personalized user profiles to manage listings and preferences.
- Frontend: HTML, CSS, JavaScript, jQuery
- Backend: Node.js, Express
- Database: PostgreSQL
JX_video.mp4
-
Clone the repository:
git clone git@github.com:AlexTamayo/JX.git
-
Install dependencies:
npm install
-
Run the server:
npm start
Now, navigate to http://localhost:8081/ in your web browser to start exploring JX!
- Create the
.envby using.env.exampleas a reference:cp .env.example .env - Update the .env file with your correct local information
- username:
labber - password:
labber - database:
midterm
- Install dependencies:
npm i - Fix to binaries for sass:
npm rebuild node-sass - Reset database:
npm run db:reset
- Check the db folder to see what gets created and seeded in the SDB
- Run the server:
npm run local
- Note: nodemon is used, so you should not have to restart your server
- Visit
http://localhost:8081/
-
Do not edit the
layout.cssfile directly, it is auto-generated bylayout.scss. -
Split routes into their own resource-based file names, as demonstrated with
users.jsandwidgets.js. -
Split database schema (table definitions) and seeds (inserts) into separate files, one per table. See
dbfolder for pre-populated examples. -
Use helper functions to run your SQL queries and clean up any data coming back from the database. See
db/queriesfor pre-populated examples. -
Use the
npm run db:resetcommand each time there is a change to the database schema or seeds.- It runs through each of the files, in order, and executes them against the database.
- Note: you will lose all newly created (test) data each time this is run, since the schema files will tend to
DROPthe tables and recreate them.
-
Node 10.x or above
-
NPM 5.x or above
-
PG 6.x