Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 1.56 KB

File metadata and controls

69 lines (49 loc) · 1.56 KB

Workout App Frontend

This is the frontend service for the Workout App, built using Next.js and deployed on Vercel.

Table of Contents

Installation

  1. Clone the repository:

    git clone https://github.com/BryanElmer/WorkoutApp_Frontend.git
    cd WorkoutApp_Frontend
  2. Install dependencies:

    npm install

Usage

  1. Run the development server:

    npm run dev
  2. The frontend will be available at http://localhost:3000.

Main Features

  • User authentication (login/signup)
  • Viewing, creating, updating, and deleting workouts

Environment Variables

To run the project locally, you might need to set up some environment variables. Create a .env file in the root of your project and add the necessary variables.

Deployment

The frontend is deployed on Vercel. To deploy your own version, follow these steps:

  1. Install the Vercel CLI:

    npm install -g vercel
  2. Deploy the project:

    vercel

Follow the prompts to complete the deployment.

Contributing

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Commit your changes (git commit -m 'Add some feature').
  5. Push to the branch (git push origin feature-branch).
  6. Open a Pull Request.