It's a simple web application, writen in JavaScript.
Still work in progress.
To get this server to work on your cumputer, you will need to follow the following steps:
Fork and clone the project.
You can do that eather using terminal, or GitHub Desktop app.
Locate the repository folder on your computer.
- If you are running Linux/Mac, do that using the
cd
command.
$ cd Desktop/Express-Server
- If you are running on Windows, also use the
cd
command.
But make sure you are on the right disc!
If you are on the wrong disc, use d:
command to switch to the another.
$ cd Desktop/Express-Server
$ d:
Create development database, using nmp run db
.
That will create an Sqlite database file ./dev-db.sqlite3
with three users:
testuser
, cotirubex
and chrachel
. The passwords are the same as the user names.
You need to have Sqlite installed on your computer!
$ nmp run db
Start the application, Using npm start
command.
$ nmp start
And you are good to go!