2023-07-03 17:51:40 +03:00
|
|
|
# My Website | [ngn13.fun](https://ngn13.fun)
|
2023-04-16 20:12:24 +03:00
|
|
|
This repo contains the source code of my personal website.
|
2023-06-18 18:09:03 +03:00
|
|
|
It's written NuxtJS and supports full SSR. As database,
|
2023-07-03 17:51:40 +03:00
|
|
|
it uses mongodb. It's just a personal project that
|
|
|
|
I am working on.
|
2023-04-16 20:12:24 +03:00
|
|
|
|
|
|
|
## Setup
|
2023-07-03 17:51:40 +03:00
|
|
|
For some reason if you want to setup my website localy
|
|
|
|
install `nodejs` and `npm`, then run the following:
|
|
|
|
```bash
|
|
|
|
git clone https://github.com/ngn13/ngn13.fun.git && cd ngn13.fun &&
|
|
|
|
npm i
|
|
|
|
echo "PASS=password" > .env
|
|
|
|
echo "DATABASE=mongodb://127.0.0.1" > .env
|
2023-04-16 20:12:24 +03:00
|
|
|
npm run build
|
|
|
|
npm run start
|
2023-04-16 20:20:13 +03:00
|
|
|
```
|