A website where you can keep up to date with NEIIST.
A platform to help students find the right Master's thesis.
A place for NEIIST's members to get involved with the association.
Go to Website »
Report Bug
·
Request Feature
To get a local copy up and running follow these simple example steps.
-
NPM
sudo apt install npm
-
Node.js
sudo apt install nodejs
-
PostgreSQL
sudo apt install postgresql
- Create a Fénix application with a Redirect Url of
http://localhost:3000/
and a Scope ofInformações
at https://fenix.tecnico.ulisboa.pt/personal/external-applications/#/applications - Create a PostgreSQL database
sudo -i -u postgres psql CREATE DATABASE neiist; \q exit
- Clone the repo
cd folder-where-i-keep-my-repos/ git clone https://github.com/neiist-dev/neiist-website.git
- Server: Install NPM packages
cd server/ npm install
- Server: Create .env file
cp .env.example .env
- Server: Populate the .env file with your Fénix application and database credentials
- Server: Run
npm start
- Client: Install NPM packages
cd ../client/ npm install
- Client: Create .env file
cp .env.example .env
- Client: Populate the .env file with your Fénix application credentials
- Client: Run
npm start