http://bdev.c4gnv.com.s3-website-us-east-1.amazonaws.com/
C4GNV is a member brigade of Code for America, the goal of this project is to make it easier to start a business in Gainesville by providing people easy access to permits and zoning information. The project is a lightweight website written in Typescript and Angular 2, using open data sources as a persistent backend.
The inspiration for this service is to eventually be able to expand to be like the Business Portal for San Francisco, however we're starting with the Permit Locator functionality only.
We welcome your contribution! Please see our contributing guidelines.
You want to run this bad boy locally? Let's do it.
Install nodejs from https://nodejs.org/en/
Install npm from https://www.npmjs.com/
npm
for package management.
If you don't already have it installed, you can
follow yarn's own documentation
to install it. The documentation for the business portal will refer to
yarn
in place of npm
, but they can be used in the
same way.Install the latest version of GIT from https://git-scm.com/
From the command line execute git clone https://github.com/c4gnv/business-web.git
to get this repository down to your local machine
Run yarn install
in the project's root directory
Run yarn start
and head over to http://localhost:8080/ you should now see the latest and greatest.
=======
https://businessportal.sfgov.org/permits-licenses
This is the type of business that a person is trying to open. These are defined by the city of gainesville. The schema for a BusinessType is as follows:
business_type: string;
business_category: string;
requiredPermits: Permit[];
conditionalPermits: Permit[];
This is a permit that is required for a particular BusinessType. The schema for a Permit is as follows:
friendly_name: string;
permit_location: {
url: string;
};
online_submission: {
url: string;
};
permit_description: string;
permit_name: string;
The permit locator page makes two http requests to Socrata (see above URLs) and generates an array of BusinessType structures. This structure is populated with types and permits from Socrata.