42 lines
1.3 KiB
Markdown
42 lines
1.3 KiB
Markdown
# My Personal Website!
|
|
|
|
The codebase for my personal website, which you can [visit
|
|
here](https://dev.noway.moe)!
|
|
|
|
Written using [Astro.js](https://astro.build/) as the main framework, with
|
|
[Tailwind CSS](https://tailwindcss.com/). MDX rendering and syntax highlighting
|
|
provided by [remark.js](https://github.com/remarkjs).
|
|
|
|
![Front page of
|
|
noway.moe](https://cdn.discordapp.com/attachments/436012664003624970/1191201280933245108/screenshot_shm.png)
|
|
|
|
### Licence
|
|
|
|
Feel free to fork this code and use it for your website! No need to credit me.
|
|
|
|
This code is licensed under AGPL, meaning that you must open source any forks of
|
|
this code. That way everyone can benefit from our collective efforts!
|
|
|
|
### Building
|
|
|
|
If you're interested in building this code, do the following:
|
|
|
|
```bash
|
|
git clone https://git.mami2.moe/akemi/noway.moe
|
|
cd noway.moe
|
|
npm install
|
|
npm run dev
|
|
|
|
# To view the compiled version
|
|
npm run preview
|
|
|
|
# Once you're ready to publish
|
|
npm run build
|
|
```
|
|
|
|
I use [Cloudflare Pages](https://pages.cloudflare.com) for hosting. It's free
|
|
for static sites, but there are many other options to consider including
|
|
[Vercel](https://vercel.com/), [Github](https://pages.github.com), and
|
|
[Netlify](https://www.netlify.com) all of which are also free and fast for
|
|
static webpages! Live on the edge, pick one you haven't tried!
|