Front-end of fortuna-flow.
- Node JS v20.10.0
- NPM v10.2.3
Steps to install this project.
- Clone this repository
git clone https://github.com/Shiyinq/fortuna-flow.git
- Navigate to the project directory:
cd fortuna-flow/frontend
- Install dependencies:
npm install
- Make
.env
filecp .env.example .env
Once you've clone a repository and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
NOTE: Please ensure that you run the backend API first. You can find instructions in the README file.
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.
- You can open issues to report bugs or request features.
- You can fix bugs and add features on your own.
- Fork this repository
- Create a feature branch
git checkout -b new-feature
- Commit your changes
git commit -m 'Add new feature'
- Push to the branch
git push origin new-feature
- Create a Pull Request