AIS — Armada Internal System
See CONTRIBUTING.md
In order to run the project locally, you need the following tools:
Docker (used to run the server and database)
Windows
Orbstack with MacOS
NVM (used to install Node)
Windows
wsl
sudo apt-get install curl
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
MacOS with Homebrew
brew install nvm
PNPM (used to compile dashboard)
All platforms with NVM
nvm install 20.12 && nvm use 20.12
npm install -g [email protected]
Black (used to format code, is not required to run the project)
All platforms With PIP
pip install black==23.3.0
cp .env.example .env
You can choose to use a copy of the production database for your local development.
- Create a directory called
ais-developer-database
in the root directory. - Add the production database file (a file you get from HoIS) to that directory.
- Rename the file
init.sql
.
nvm install 16 && nvm use 16 && npm install && npm run build
cd apps/dashboard && nvm use 20.12 && pnpm install && pnpm build && cd ../../
The server will run in a docker compose
instance. To start the server, run the following command:
docker compose up
The web server will setup everything and connect itself to a postgis database. The server will listen for code changes, and restart itself thereafter (that is, you don't need to run this command after every change you make). If everything went right you see the output:
The database will not be up to date with the latest migrations. Run:
./init-dev-environment.sh
to both migrate the database and to create a super user. The super user setup will guide you through giving the super user a name, email, and password. Enter whatever you feel is appropriate for your local development experience. If you only want to migrate the database, and not create a super user, simply exit the program using ctrl+c
when it prompts you for the username for the super user. The server must be running in order to run this command.
ais-web-1 | Starting development server at http://0.0.0.0:3000/
After setting up the AIS with Docker, you can access it in a web browser with the address http://localhost:3000
The dashboard is where initial and final registration is made, as well as lunch tickets creation, exhibitor information, core values, logistics information, sture information. Development of this dashboard is done through in the folder apps/dashboard
. Follow the instructions in the folder for starting the local React project. When running the React project, it will use localhost:3000
as the URL for the backend, so you need to have AIS running in the background. The dashboard will be served the user [email protected]
in development mode, meaning you need to make sure this company contact exists. If you are e.g. doing final registration development, you need to make sure the company which this email belongs to is an exhibitor.
The dashboard is currently not being built in the automatic pipeline, meaning you need to build it yourself when deploying (TODO: add this to the automatic pipeline). Therefore, you need to run pnpm build
in the apps/dashboard
folder before merging into production.
I cannot log in to AIS!
This is because there are no super users created in the system. Run ./init-dev-environment.sh
and enter the username and password for the super user. After doing this you can log into the AIS with these settings.
I logged into my locally hosted AIS instance for the first time; but I can only see an error page!
Most likely, you haven't created a fair yet. To do so, follow these steps:
-
Go to the admin page (
localhost:3000/admin/
) -
Log in there again using your super user account, if needed.
-
On the admin page, find the "Fair" section, and press "Add" next to "Fairs" to add a new fair.
-
Now you need to fill out some information. Fill out the necessary fields (Registration start date & end date, Complete registration start date & end date). Make sure end dates come after start dates. Tick the "Current" box, and press save at the bottom of the page. The fair will be created, and you can go back to
localhost:3000
to see the landing page for the fair.
entrypoint.sh not found
If you're on Windows, you need to change the CRLF line endings in the file entrypoint.sh
to LF line endings.
'JSONError' object has no attribute 'get'
This error can occur when running the local version of the dashboard. In this case, it could mean that the development user for the dashboard does not exist. You need to create a company contact (for any company) with the email [email protected]
. The function get_user
in util/__init__.py
will use this user for all requests if you are in development mode.
When adding new fields to models, you will need to create a database migration. This migration will be performed on the server to update the database to the latest structure. After adding a field, and making sure the docker instance of AIS is up and running through docker compose, you run the following command:
./make-migrations <name of migration> <name of module where field was added>
A number of scripts are available in the scripts folder. Others can be run with manage.py [scriptname]
. Run manage.py help
to list what scripts are available through manage.py
Please check out LICENSE.txt for information.