utaipei-sa / reserve.utsa

The web frontend of UTSA's space and item reservation system.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Reserve Frontend

A platform to reserve the spaces and items managed by UTSA.

Start with Docker

To build the image for this application, use:

docker build -t reserve-image .

Running the Docker Container, use:

docker run -d -p 80:80 --name reserve-frontend reserve-image

Then the server will be accessible in http://localhost:80

Start Locally with npm

To set up and run the application locally without Docker, follow these steps:

  1. Ensure you have Node.js and npm installed on your machine. You can download them from Node.js official site.

  2. Clone the repository (if you haven't already):

    git clone https://github.com/utaipei-sa/reserve.utsa.git
    
    cd reserve.utsa
  3. Install the necessary dependencies:

    npm install
  4. Start the development server:

    npm run dev

Then the server will be accessible at http://localhost:3000 (or the port specified in your project configuration).

About

The web frontend of UTSA's space and item reservation system.

License:MIT License


Languages

Language:Vue 88.3%Language:JavaScript 10.5%Language:HTML 0.5%Language:Dockerfile 0.4%Language:SCSS 0.3%