Skip to content

RigidBit/archive3

Repository files navigation

Archive3

Build Status Requirements Status Status Uptime Twitter Follow

This is the primary codebase for the Archive3 web application.

Development Prerequisites

Before developing on this application you should have working knowledge of the following technologies and toolchains:

You should also have working experience with the following frameworks and libraries:

You must have the following installed in your development environment to properly build:

Production Server Prerequisites

Production Server Fonts

Websites in languages that do not use Roman characters may require additional fonts to display correctly. The fonts DejaVu and Noto are free fonts that can be installed which handle many of the common languages.

Basic Webserver Setup Procedure

  • Create a web directory and create an initialized venv directory within it.
  • Install dependencies within the venv.
  • Populate .env with secrets and settings.
  • Configure webserver to use WSGI with the venv and serve static content from the static and data directories.

Development Setup

Using a venv is recommended.

python -m venv init venv
source venv/bin/activate

Installing dependencies:

pip install -r requirements.txt

Saving dependencies to requirements.txt:

Using pipreqs is recommended over pip. While in an active venv use the following to regenerate requirements.txt.

pipreqs --ignore node_modules --force

Setting up the .env file:

See README_ENV.md for a basic template.

Starting the development server:

npm run flask

or

FLASK_APP=archive3/web.py FLASK_DEBUG=1 python -m flask run -h 0.0.0.0 -p 5001

Starting the development CSS builder:

npm start

Starting the processing service:

python3 processor.py

Starting the queue processing service:

python3 queue_processor.py

Building static assets for production:

npm build

Web:

Copy the following files and folders to the remote server.

archive3/*.py
archive3/templates/*
static/*
requirements.txt
uwsgi.ini

Create the following empty folders.

data

Create symbolic links.

ln -s ./data archive3/data
ln -s ./static archive3/static

Create a venv and install the requirements.

python -m venv init venv
source venv/bin/activate
pip install -r requirements.txt

Configuring the web server:

Setup your webserver to serve static content from the static folder. All other requests should be sent to the uWSGI handler.

See README_APACHE.md for a basic Apache configuration example. See README_NGINX.md for a basic NGINX configuration example.

Setting up services:

You will need to also setup services for:

  • processor.py
  • queue_processor.py
  • uwsgi.py

You can use any service manager, but systemd is recommended. See README_SERVICES.md for a basic configuration examples.

Testing

Setup the venv, symlinks, and database as noted above. The .env will need to be populated with valid settings. The webserver and uWSGI is not needed for testing.

To launch tests execute the following command from the project root:

npm run test

or

python -m unittest discover tests

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published