A web app that shuffles user-defined text. Example: randomized daily warm-ups
Once you have this source code on your computer, you can get it running by doing the following.
- Install Node 10 or later.
- From the root directory of the project (the same one this README file is in), run this command:
npm i
- Then, run
make run
. It should then say something likeYour application is ready~! Local: http://0.0.0.0:7000
- On Windows, you may not have
make
. In that case, you can runnpm run dev
. - Go to
http://0.0.0.0:7000
(orhttp://localhost:7000
) in your browser. The web app will be running there.
- On Windows, you may not have