Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

communitiesuk/funding-service-design-post-award-submit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

funding-service-design-post-award-submit

This repository is no longer in use, superseded by the migration to a monolith in communitiesuk/funding-service-design-post-award-data-store#641

Setup

Install Python 3.11 (instructions assume Python 3 is installed on your PATH as python but may be python3 on OSX)

Check your Python version starts with 3.11:

python --version

Python 3.11.2

Create the virtual environment

From repo root:

python -m venv .venv

...or if using PyCharm when importing project, create venv and set local Python interpreter to use it:

In PyCharm:

  1. File -> New Project... :
  2. Select 'New environment using' -> Virtualenv
  3. Set 'location' to top level of project folder
  4. Base interpreter should be set to global Python install.

Enter the virtual environment

...either macOS using bash/zsh:

source .venv/bin/activate

...or if on Windows using Command Prompt:

.venv\Scripts\activate.bat

...or if using PyCharm, if venv not set up during project import:

  1. Settings -> Project -> Python interpreter -> Add interpreter -> Add local interpreter
  2. If not previously created -> Environment -> New -> Select path to top level of project
  3. If previously created -> Environment -> Existing -> Select path to local venv/scripts/python.exe
  4. Do not inherit global site packages

To check if PyCharm is running local interpreter (rather than global):

pip -V

Add pip-tools:

python -m pip install pip-tools

Install dependencies:

python -m pip install --upgrade pip && pip install -r requirements-dev.txt

NOTE: requirements-dev.txt and requirements.txt are updated using pip-tools pip-compile To update requirements please manually add the dependencies in the .in files (not the .txt files) Then run:

pip-compile requirements.in

pip-compile requirements-dev.in

Get GOV.UK Frontend assets

For convenience a shell script has been provided to download and extract the GOV.UK Frontend distribution assets

python build.py

Setup pre-commit checks

  • Install pre-commit locally
  • Pre-commit hooks can either be installed using pip pip install pre-commit or homebrew (for Mac users) brew install pre-commit
  • From your checkout directory run pre-commit install to set up the git hook scripts

Run app

flask run

App should be available at http://localhost:5000

Functionality may be limited due to dependency on other microservices. It is recommended to run all the necessary apps using Docker Compose from the funding-service-design-post-award-docker-runner repo:

Run with Docker

Prerequisites

Install Docker Desktop.

Docker Compose (recommended)

To run the app alongside other related microservices see https://github.com/communitiesuk/funding-service-design-post-award-docker-runner

Commands

docker build -t communitiesuk/funding-service-design-post-award-submit .
docker run -p 8080:8080 communitiesuk/funding-service-design-post-award-submit

App should be available at http://localhost:8080

Deployment

The app is deployed via Github Actions. On the deployment environments we use Paketo buildpacks rather than the local Dockerfile.

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors 12