dvmarinoff / Flux

Indoor Cycling App for Structured Training
https://flux-web.vercel.app
GNU Affero General Public License v3.0
505 stars 86 forks source link

Local web server #182

Closed kurtnolf closed 5 months ago

kurtnolf commented 6 months ago

Great project ! Is there a reason that this SPA cannot run locally ? I installed a local web server and I downloaded the source . The home page loads fine but I cannot go into the workout or other pages. Any specific requirements to be able to run this on a local webserver ?

dvmarinoff commented 6 months ago

The project should run locally, it has no external dependencies except for the dev tools (parcel), but you can easily circumvent those. Have you tried the following steps?

git clone https://github.com/dvmarinoff/Flux.git
cd Flux/
npm install
npm run start

In a supported browser open: localhost:1234/

kurtnolf commented 6 months ago

The project should run locally, it has no external dependencies except for the dev tools (parcel), but you can easily circumvent those. Have you tried the following steps?

git clone https://github.com/dvmarinoff/Flux.git
cd Flux/
npm install
npm run start

In a supported browser open: localhost:1234/

Thanks for the instructions. It works fine.