Table of Contents
My personal portfolio, but better this time.
It replaced bikatr7.github.io, with a more professional, modern, and frankly not terrible design.
Built with React, Vite, and Typescript
These steps must be followed in order.
- Clone the repo, make sure you are using the correct branch (currently
production
) - Navigate to the
backend
directory.cd backend
. Inside is the python backend. - Run the setup script with the local argument. This will install all requirements and setup the local env
python setup.py local
. - Run the server. For local
uvicorn main:app --reload --port 5000
- Open a new terminal and navigate to the
frontend
directory.cd frontend
. Inside is the react (vite) frontend. - First install all required packages, these are in
package.json
. Donpm i
. Then run the dev server withnpm run dev
- Website will be on localhost:5173 (frontend) and localhost:5000 (backend)
Default login is admin:password
Also requires a totp code, default is JBSWY3DPEHPK3PXP so use that.
Frontend is hosted on cloudflare pages. To deploy, push to the production
branch. Development branch is for development only, intermediate builds deploy every commit.
For production, the backend is hosted on fly.io via a dockerfile.
- docker build -t kadenbilyeu.com -f build.dockerfile .
- docker run -p 8000:8000 kadenbilyeu.com
- Make sure you have the fly cli installed and are logged in.
- Run
fly deploy
in the root directory. This will build the dockerfile and deploy it to fly.io.
I welcome contributions to my site and corrections to any inaccuracies found on the site. Please feel free to fork the repository, make changes, and submit a pull request.
This site (kadenbilyeu.com) is licensed under the GNU Affero General Public License (AGPLv3). You can find the full text of the license in the LICENSE file.
The AGPLv3 is a copyleft license that promotes the principles of open-source software. It ensures that any derivative works based on this project, as well as any software that interacts with users over a network, must also be distributed under the same AGPLv3 license. This license grants you the freedom to use, modify, and distribute the software.
Please note that this information is a brief summary of the AGPLv3. For a detailed understanding of your rights and obligations under this license, please refer to the full license text.