👷
Guia Edutec DevOps
Guia Edutec by CIEB
English
English
  • Introduction
  • Database
  • Back-end
  • Front-end
Powered by GitBook
On this page
  • Step-by-step
  • 1. Access the repository on GitHub via the link
  • 2. Clone the repository to your server
  • 3. Access the created folder
  • 4. Environment variables
  • 5. Set environment variables as needed
  • 6. Change the visual identity
  • 7. Run docker-compose command

Was this helpful?

Edit on GitHub

Front-end

Instructions for running the user interface

PreviousBack-end

Last updated 3 years ago

Was this helpful?

Step-by-step

1. Access the repository on GitHub via the link

2. Clone the repository to your server

$ git clone https://github.com/guiaedutec/geos-frontend.git

3. Access the created folder

$ cd geos-frontend

4. Environment variables

At the root of the project, rename the .env.example file to just .env

5. Set environment variables as needed

.env
# URL to connect to back-end web services
API_URL=

# Basic application settings
TITLE=
WEBSITE_URL=
PROJECT_NAME=

# Google Analytics ID
TRACKING_ID=

6. Change the visual identity

Change the logos and images of your choice by accessing the folder:

  • .\public\images\theme

    • bg-home.png

    • logo-footer.png

    • logo-footer-secondary.png

    • logo-header.png

    • logo-header-secondary.png

If you need to change the default visual style of the application, such as colors, font size, among other attributes, just edit the two files below:

  • ./src/variables.styl

  • ./src/bulma-variables.scss

7. Run docker-compose command

~/geos-frontend$ docker-compose up -d --build
https://github.com/guiaedutec/geos-frontend