Skip to content

mazzobeg/aria-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ARIA

Testing

Install from source

flit install

Install from source (dev)

To install the project, execute the following command.

flit install --symlink

This way the project will be modified on the fly during development.

To launch aria-backend run the following command.

aria-backend -c <config_path>

Here is an example of minimum configuration.

{
    "SQLALCHEMY_DATABASE_URI": "sqlite:///<path_to_database>.db"
}
cd src && flask -A aria_backend run && cd ..