Skip to content

flagexcepti0n/Fx0Web

Repository files navigation

FlagExcept0n Website

This is the source code for the FlagExcept0n website. It is built using Vuejs and Vite.

Recommended IDE Setup

Development

To run the website locally, run the following commands:

npm install
npm run dev

Deployment

Building manually

To deploy the website, run the following commands:

npm install
npm run build

The website will be built into the dist directory. You can then deploy the contents of this directory to your web server.

Using docker

To deploy the website using docker, run the following commands depending on weather you rather usr docker hub or ghcr.io:

docker pull ghcr.io/flagexcepti0n/fx0web:main
docker run -d -p 80:80 ghcr.io/flagexcepti0n/fx0web:main
docker pull flagexcept0n/fx0web:main
docker run -d -p 80:80 flagexcept0n/fx0web:main