A platform to reserve the spaces and items managed by UTSA.
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
To set up and run the application locally without Docker, follow these steps:
-
Ensure you have Node.js and npm installed on your machine. You can download them from Node.js official site.
-
Clone the repository (if you haven't already):
git clone https://github.com/utaipei-sa/reserve.utsa.git cd reserve.utsa
-
Install the necessary dependencies:
npm install
-
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).