Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harshdeswal/glytics-frontend
https://github.com/harshdeswal/glytics-frontend
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/harshdeswal/glytics-frontend
- Owner: HarshDeswal
- Created: 2024-07-07T08:06:03.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T07:42:43.000Z (4 months ago)
- Last Synced: 2024-07-08T10:57:37.336Z (4 months ago)
- Language: JavaScript
- Homepage: https://glytics-frontend.vercel.app
- Size: 183 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Glytics - Analytics for Games
![image](https://github.com/HarshDeswal/glytics-frontend/assets/94471009/24aa458b-7fc7-49fe-84fc-457dcb657b19)
## Prerequisites:
1. Node.js and npm (or yarn) installed on your system.
2. Docker installed on your system. You can find installation instructions at https://docs.docker.com/engine/install/.## Getting Started:
Clone the repository:
Bash
`git clone https://github.com/HarshDeswal/glytics-frontend.git`
`cd glytics-frontend`
## Install dependencies:
Bash
`npm install`
## Build the React application:
Bash
`npm run build`
## (Optional) Run the application locally:
Bash
`npm start`
This will start a development server for your React application at http://localhost:3000 by default.
Using Docker:
## Build the Docker image:
Bash
`docker build -t your-username/your-app-name` .
## Run the Docker container:
Bash
`docker run -p 5000:5000 your-username/your-app-name`
This will run a Docker container with your React application exposed on port 5000 of the host machine.