wasteof.money (legacy): Difference between revisions
m (fix caption) |
(added a setup section and accidentally buried the images) |
||
Line 1: | Line 1: | ||
'''wasteof.money''', commonly known as '''wasteof.money legacy''' to differentiate it from newer versions, and sometimes called '''wasteof1''', was the original version of the [[wasteof.money]] website. It was created by [[Jeffalo]] in November 2020 and was originally only available for a short time. It is open source on GitHub.<ref>https://github.com/jeffalo/wasteof.money</ref> | '''wasteof.money''', commonly known as '''wasteof.money legacy''' to differentiate it from newer versions, and sometimes called '''wasteof1''', was the original version of the [[wasteof.money]] website. It was created by [[Jeffalo]] in November 2020 and was originally only available for a short time. It is open source on GitHub.<ref>https://github.com/jeffalo/wasteof.money</ref> | ||
[[File:101082518-ddb15c00-35ab-11eb-933b-babb15b19cd3.png|thumb| | |||
=== Setup === | |||
Below is the guide on how to setup [https://github.com/jeffalo/wasteof.money#readme wasteof.legacy] and host it on your computer. | |||
You need to install node, node package manager, git bash and mongodb for this to work. | |||
First, clone the repository<syntaxhighlight lang="console"> | |||
git clone https://github.com/jeffalo/wasteof.money.git | |||
</syntaxhighlight>Next, open the folder<syntaxhighlight lang="console"> | |||
cd wasteof.money | |||
</syntaxhighlight>Next, install it and its dependencies<syntaxhighlight lang="console"> | |||
npm i | |||
</syntaxhighlight>Next, build the css<syntaxhighlight lang="console"> | |||
npm run tailwind:build | |||
</syntaxhighlight> | |||
==== Setup .env ==== | |||
Either run <code>npm run setup</code> (recommended), or follow these instructions. | |||
* MongoDB needs DB_URL env variable (For example, DB_URL=localhost/social) | |||
* (Optional) LISTEN_PORT env variable default 8080 | |||
Finally, start the app!<syntaxhighlight lang="console"> | |||
node . | |||
</syntaxhighlight>[[File:101082518-ddb15c00-35ab-11eb-933b-babb15b19cd3.png|thumb|367x367px|User page on wasteof.money legacy]] | |||
[[File:Wasteoflegacy.png|thumb|148x148px|wasteof.money legacy logo]] | [[File:Wasteoflegacy.png|thumb|148x148px|wasteof.money legacy logo]] | ||
<references /> |
Revision as of 10:27, 12 August 2022
wasteof.money, commonly known as wasteof.money legacy to differentiate it from newer versions, and sometimes called wasteof1, was the original version of the wasteof.money website. It was created by Jeffalo in November 2020 and was originally only available for a short time. It is open source on GitHub.[1]
Setup
Below is the guide on how to setup wasteof.legacy and host it on your computer.
You need to install node, node package manager, git bash and mongodb for this to work.
First, clone the repository
git clone https://github.com/jeffalo/wasteof.money.git
Next, open the folder
cd wasteof.money
Next, install it and its dependencies
npm i
Next, build the css
npm run tailwind:build
Setup .env
Either run npm run setup
(recommended), or follow these instructions.
- MongoDB needs DB_URL env variable (For example, DB_URL=localhost/social)
- (Optional) LISTEN_PORT env variable default 8080
Finally, start the app!
node .